Searched refs:os_id (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_thread.cpp79 void ThreadStart(u32 tid, tid_t os_id, ThreadType thread_type) { argument
89 thread_registry->StartThread(tid, os_id, thread_type, &args);
124 CurrentThreadContext()->os_id = GetTid();
129 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, argument
133 thread_registry->FindThreadContextByOsIDLocked(os_id));
145 void ForEachExtraStackRange(tid_t os_id, RangeIteratorCallback callback, argument
H A Dlsan_thread.h47 void ThreadStart(u32 tid, tid_t os_id,
H A Dlsan_common.h211 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
214 void ForEachExtraStackRange(tid_t os_id, RangeIteratorCallback callback,
H A Dlsan_common.cpp222 tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i)); local
223 LOG_THREADS("Processing thread %d.\n", os_id);
226 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
232 LOG_THREADS("Thread %d not found in registry.\n", os_id);
239 Report("Unable to get registers from thread %d.\n", os_id);
272 ForEachExtraStackRange(os_id, ForEachExtraStackRangeCb, frontier);
305 LOG_THREADS("Thread %d has DTLS under destruction.\n", os_id);
534 tctx->os_id, CompareLess<int>());
535 if (i >= suspended_threads.size() || suspended_threads[i] != tctx->os_id)
537 tctx->os_id);
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp19 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0),
76 os_id = _os_id;
205 return (tctx->os_id == (uptr)arg && tctx->status != ThreadStatusInvalid &&
209 ThreadContextBase *ThreadRegistry::FindThreadContextByOsIDLocked(tid_t os_id) { argument
211 (void *)os_id);
305 void ThreadRegistry::StartThread(u32 tid, tid_t os_id, ThreadType thread_type, argument
313 tctx->SetStarted(os_id, thread_type, arg);
H A Dsanitizer_thread_registry.h47 tid_t os_id; // PID (used for reporting). member in class:__sanitizer::ThreadContextBase
122 ThreadContextBase *FindThreadContextByOsIDLocked(tid_t os_id);
129 void StartThread(u32 tid, tid_t os_id, ThreadType thread_type, void *arg);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp246 tid_t os_id, atomic_uintptr_t *signal_thread_is_registered) {
248 asanThreadRegistry().StartThread(tid(), os_id, ThreadType::Regular, nullptr); local
454 context->os_id = GetTid();
457 __asan::AsanThread *GetAsanThreadByOsIDLocked(tid_t os_id) { argument
459 __asan::asanThreadRegistry().FindThreadContextByOsIDLocked(os_id));
467 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, argument
470 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
483 void ForEachExtraStackRange(tid_t os_id, RangeIteratorCallback callback, argument
485 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
245 ThreadStart( tid_t os_id, atomic_uintptr_t *signal_thread_is_registered) argument
H A Dasan_fuchsia.cpp176 static void ThreadStartHook(void *hook, uptr os_id) { argument
181 asanThreadRegistry().StartThread(thread->tid(), os_id, ThreadType::Regular,
188 static void ThreadExitHook(void *hook, uptr os_id) { argument
H A Dasan_rtems.cpp173 static void ThreadStartHook(void *hook, uptr os_id) { argument
186 asanThreadRegistry().StartThread(thread->tid(), os_id, ThreadType::Regular,
199 static void ThreadExitHook(void *hook, uptr os_id) { argument
H A Dasan_thread.h72 thread_return_t ThreadStart(tid_t os_id,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp166 int __tsan_get_report_thread(void *report, uptr idx, int *tid, tid_t *os_id, argument
173 *os_id = thread->os_id;
243 tid_t *os_id) {
256 *os_id = tctx->os_id;
242 __tsan_get_alloc_stack(uptr addr, uptr *trace, uptr size, int *thread_id, tid_t *os_id) argument
H A Dtsan_report.h93 tid_t os_id; member in struct:__tsan::ReportThread
H A Dtsan_report.cpp261 Printf(" (tid=%zu, %s) is a GCD worker thread\n", rt->os_id, thread_status);
266 Printf(" (tid=%zu, %s) created by %s", rt->os_id, thread_status,
H A Dtsan_interface.h166 int __tsan_get_report_thread(void *report, uptr idx, int *tid, tid_t *os_id,
183 tid_t *os_id);
H A Dtsan_rtl_thread.cpp242 void ThreadStart(ThreadState *thr, int tid, tid_t os_id, argument
262 tr->StartThread(tid, os_id, thread_type, &args);
H A Dtsan_rtl_report.cpp201 rt->os_id = tctx->os_id;
H A Dtsan_rtl.h775 void ThreadStart(ThreadState *thr, int tid, tid_t os_id,
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_swinstalled_tbl.c256 struct utsname os_id; local
263 if (uname(&os_id) == -1) {
269 os_id.sysname, os_id.version);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dppcboot.c64 bfd_byte os_id; /* OS_ID */ member in struct:ppcboot_hdr
429 if (tdata->header.os_id)
430 fprintf (f, "OS_ID = 0x%.2x\n", tdata->header.os_id);

Completed in 134 milliseconds