Symbol: _thread
headers/private/debugger/model/Team.h
131
::Thread** _thread = NULL);
headers/private/debugger/target_host_interface/TargetHostInterface.h
55
thread_id& _thread) const = 0;
headers/private/kernel/thread_types.h
347
static status_t Create(const char* name, Thread*& _thread);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1247
void _GetThreadAndTimeAt(BPoint point, Model::Thread*& _thread,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1250
_thread = fModel->ThreadAt(
src/kits/debugger/model/Team.cpp
137
Team::AddThread(const ThreadInfo& threadInfo, Thread** _thread)
src/kits/debugger/model/Team.cpp
152
if (_thread != NULL)
src/kits/debugger/model/Team.cpp
153
*_thread = thread;
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
194
DebuggerInterface*& _interface, thread_id& _thread) const
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
219
_thread = teamInfo.Id();
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.h
31
thread_id& _thread) const;
src/kits/debugger/target_host_interface/network/NetworkTargetHostInterface.cpp
89
DebuggerInterface*& _interface, thread_id& _thread) const
src/kits/debugger/target_host_interface/network/NetworkTargetHostInterface.h
31
thread_id& _thread) const;
src/system/kernel/arch/riscv64/arch_debug.cpp
415
setup_for_thread(char* arg, Thread** _thread, addr_t* _bp,
src/system/kernel/arch/riscv64/arch_debug.cpp
462
*_thread = thread;
src/system/kernel/arch/x86/arch_debug.cpp
464
setup_for_thread(char* arg, Thread** _thread, addr_t* _bp,
src/system/kernel/arch/x86/arch_debug.cpp
511
*_thread = thread;
src/system/kernel/thread.cpp
366
Thread::Create(const char* name, Thread*& _thread)
src/system/kernel/thread.cpp
378
_thread = thread;
src/system/libroot/os/thread.c
36
thread_entry(void* _entry, void* _thread)
src/system/libroot/os/thread.c
39
pthread_thread* thread = (pthread_thread*)_thread;
src/system/libroot/posix/pthread/pthread.cpp
175
pthread_create(pthread_t* _thread, const pthread_attr_t* attr,
src/system/libroot/posix/pthread/pthread.cpp
178
if (_thread == NULL)
src/system/libroot/posix/pthread/pthread.cpp
201
*_thread = thread;
src/system/libroot/posix/pthread/pthread.cpp
42
pthread_thread_entry(void*, void* _thread)
src/system/libroot/posix/pthread/pthread.cpp
44
pthread_thread* thread = (pthread_thread*)_thread;
src/tests/kits/interface/WidthBufferTest.cpp
27
static int32 _thread(void *data);
src/tests/kits/interface/WidthBufferTest.cpp
44
fThread = spawn_thread(App::_thread, "widthbuffer tester",