HomeSort by relevance Sort by last modified time
    Searched defs:os_id (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/asan/
asan_thread.cc 158 thread_return_t AsanThread::ThreadStart(uptr os_id) {
160 asanThreadRegistry().StartThread(tid(), os_id, 0); local
298 context->os_id = GetTid();
301 __asan::AsanThread *GetAsanThreadByOsIDLocked(uptr os_id) {
303 __asan::asanThreadRegistry().FindThreadContextByOsIDLocked(os_id));
311 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
314 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
326 void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
328 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h 42 uptr os_id; // PID (used for reporting). member in class:__sanitizer::ThreadContextBase
109 ThreadContextBase *FindThreadContextByOsIDLocked(uptr os_id);
116 void StartThread(u32 tid, uptr os_id, void *arg);
  /external/compiler-rt/lib/lsan/
lsan_common.cc 210 uptr os_id = static_cast<uptr>(suspended_threads.GetThreadID(i)); local
211 LOG_THREADS("Processing thread %d.\n", os_id);
213 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
219 LOG_THREADS("Thread %d not found in registry.\n", os_id);
248 ForEachExtraStackRange(os_id, ForEachExtraStackRangeCb, frontier);

Completed in 241 milliseconds