OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:os_id
(Results
1 - 11
of
11
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_thread.cc
85
void ThreadStart(u32 tid, uptr
os_id
) {
94
thread_registry->StartThread(tid,
os_id
, &args);
128
CurrentThreadContext()->
os_id
= GetTid();
133
bool GetThreadRangesLocked(uptr
os_id
, uptr *stack_begin, uptr *stack_end,
137
thread_registry->FindThreadContextByOsIDLocked(
os_id
));
lsan_thread.h
41
void ThreadStart(u32 tid, uptr
os_id
);
lsan_common.h
135
bool GetThreadRangesLocked(uptr
os_id
, uptr *stack_begin, uptr *stack_end,
lsan_common.cc
152
uptr
os_id
= static_cast<uptr>(suspended_threads.GetThreadID(i));
local
153
if (flags()->log_threads) Report("Processing thread %d.\n",
os_id
);
155
bool thread_found = GetThreadRangesLocked(
os_id
, &stack_begin, &stack_end,
162
Report("Thread %d not found in registry.\n",
os_id
);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc
20
: tid(tid), unique_id(0),
os_id
(0), user_id(0), status(ThreadStatusInvalid),
63
os_id
= _os_id;
185
return (tctx->
os_id
== (uptr)arg && tctx->status != ThreadStatusInvalid &&
189
ThreadContextBase *ThreadRegistry::FindThreadContextByOsIDLocked(uptr
os_id
) {
191
(void *)
os_id
);
250
void ThreadRegistry::StartThread(u32 tid, uptr
os_id
, void *arg) {
257
tctx->SetStarted(
os_id
, arg);
sanitizer_thread_registry.h
41
uptr
os_id
; // PID (used for reporting).
member in class:__sanitizer::ThreadContextBase
109
ThreadContextBase *FindThreadContextByOsIDLocked(uptr
os_id
);
115
void StartThread(u32 tid, uptr
os_id
, void *arg);
/external/compiler-rt/lib/asan/
asan_thread.cc
125
thread_return_t AsanThread::ThreadStart(uptr
os_id
) {
127
asanThreadRegistry().StartThread(tid(),
os_id
, 0);
local
263
context->
os_id
= GetTid();
269
bool GetThreadRangesLocked(uptr
os_id
, uptr *stack_begin, uptr *stack_end,
273
__asan::asanThreadRegistry().FindThreadContextByOsIDLocked(
os_id
));
asan_thread.h
61
thread_return_t ThreadStart(uptr
os_id
);
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc
213
void ThreadStart(ThreadState *thr, int tid, uptr
os_id
) {
241
CTX()->thread_registry->StartThread(tid,
os_id
, &args);
tsan_rtl.h
686
void ThreadStart(ThreadState *thr, int tid, uptr
os_id
);
tsan_rtl_report.cc
198
rt->pid = tctx->
os_id
;
Completed in 347 milliseconds