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

  /external/compiler-rt/lib/asan/
asan_thread.cc 167 uptr os_id, atomic_uintptr_t *signal_thread_is_registered) {
169 asanThreadRegistry().StartThread(tid(), os_id, nullptr); local
311 context->os_id = GetTid();
314 __asan::AsanThread *GetAsanThreadByOsIDLocked(uptr os_id) {
316 __asan::asanThreadRegistry().FindThreadContextByOsIDLocked(os_id));
324 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
327 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
339 void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
341 __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
111 ThreadContextBase *FindThreadContextByOsIDLocked(uptr os_id);
118 void StartThread(u32 tid, uptr os_id, void *arg);
  /external/google-breakpad/src/processor/
microdump.cc 206 string os_id; local
213 os_tokens >> os_id; local
224 if (os_id == "L") {
227 } else if (os_id == "A") {
  /toolchain/binutils/binutils-2.25/bfd/
ppcboot.c 68 bfd_byte os_id; /* OS_ID */ member in struct:ppcboot_hdr
410 if (tdata->header.os_id)
411 fprintf (f, "OS_ID = 0x%.2x\n", tdata->header.os_id);
  /external/compiler-rt/lib/lsan/
lsan_common.cc 185 uptr os_id = static_cast<uptr>(suspended_threads.GetThreadID(i)); local
186 LOG_THREADS("Processing thread %d.\n", os_id);
188 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
194 LOG_THREADS("Thread %d not found in registry.\n", os_id);
223 ForEachExtraStackRange(os_id, ForEachExtraStackRangeCb, frontier);

Completed in 82 milliseconds