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 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));
  /external/compiler-rt/lib/sanitizer_common/
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/lsan/
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);

Completed in 140 milliseconds