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

  /external/compiler-rt/lib/lsan/
lsan_thread.cc 90 void ThreadStart(u32 tid, uptr os_id) {
100 thread_registry->StartThread(tid, os_id, &args);
134 CurrentThreadContext()->os_id = GetTid();
139 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
143 thread_registry->FindThreadContextByOsIDLocked(os_id));
155 void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
lsan_thread.h 48 void ThreadStart(u32 tid, uptr os_id);
lsan_common.h 154 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
157 void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
lsan_common.cc 194 uptr os_id = static_cast<uptr>(suspended_threads.GetThreadID(i)); local
195 LOG_THREADS("Processing thread %d.\n", os_id);
198 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
204 LOG_THREADS("Thread %d not found in registry.\n", os_id);
242 ForEachExtraStackRange(os_id, ForEachExtraStackRangeCb, frontier);
  /external/compiler-rt/test/tsan/
debugging.cc 23 unsigned long *os_id, int *running,
93 unsigned long os_id; local
98 __tsan_get_report_thread(report, 0, &tid, &os_id, &running, &name, &parent_tid, trace, 16);
102 __tsan_get_report_thread(report, 1, &tid, &os_id, &running, &name, &parent_tid, trace, 16);
  /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);
sanitizer_thread_registry.cc 20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0),
64 os_id = _os_id;
191 return (tctx->os_id == (uptr)arg && tctx->status != ThreadStatusInvalid &&
195 ThreadContextBase *ThreadRegistry::FindThreadContextByOsIDLocked(uptr os_id) {
197 (void *)os_id);
269 void ThreadRegistry::StartThread(u32 tid, uptr os_id, void *arg) {
276 tctx->SetStarted(os_id, arg);
  /external/compiler-rt/lib/asan/
asan_thread.cc 234 uptr os_id, atomic_uintptr_t *signal_thread_is_registered) {
236 asanThreadRegistry().StartThread(tid(), os_id, nullptr); local
385 context->os_id = GetTid();
388 __asan::AsanThread *GetAsanThreadByOsIDLocked(uptr os_id) {
390 __asan::asanThreadRegistry().FindThreadContextByOsIDLocked(os_id));
398 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
401 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
414 void ForEachExtraStackRange(uptr os_id, RangeIteratorCallback callback,
416 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
asan_thread.h 66 thread_return_t ThreadStart(uptr os_id,
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 90 uptr os_id; member in struct:__tsan::ReportThread
tsan_debugging.cc 141 int __tsan_get_report_thread(void *report, uptr idx, int *tid, uptr *os_id,
148 *os_id = thread->os_id;
tsan_rtl_thread.cc 232 void ThreadStart(ThreadState *thr, int tid, uptr os_id) {
262 tr->StartThread(tid, os_id, &args);
tsan_report.cc 239 rt->os_id, rt->running ? "running" : "finished",
tsan_rtl_report.cc 197 rt->os_id = tctx->os_id;
tsan_interface.h 127 int __tsan_get_report_thread(void *report, uptr idx, int *tid, uptr *os_id,
tsan_rtl.h 709 void ThreadStart(ThreadState *thr, int tid, uptr os_id);
  /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);

Completed in 197 milliseconds