HomeSort by: relevance | last modified time | path
    Searched refs:thread_id (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 48 pthread_t thread_id; local in function:__anone13c21300110::StopTheWorldTestLibConstructor
49 pthread_create(&thread_id, NULL, SuspenderThread, NULL);
sanitizer_stoptheworld_test.cc 74 pthread_t thread_id; local in function:__sanitizer::TEST
77 pthread_create_result = pthread_create(&thread_id, NULL, IncrementerThread,
86 ASSERT_EQ(0, pthread_join(thread_id, NULL));
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_debugging.cc 50 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
59 if (thread_id) *thread_id = chunk.AllocTid();
63 if (thread_id) *thread_id = chunk.FreeTid();
132 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
133 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
137 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
138 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
asan_interface_internal.h 154 u32 *thread_id);
158 u32 *thread_id);
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
asan_interface.h 95 int *thread_id);
101 int *thread_id);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 95 bool ContainsTid(tid_t thread_id) const;
136 bool SuspendThread(tid_t thread_id);
524 bool SuspendedThreadsListLinux::ContainsTid(tid_t thread_id) const {
526 if (thread_ids_[i] == thread_id) return true;
sanitizer_stoptheworld_mac.cc 141 threads_.push_back({info.thread_id, thread});
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_dbgdev.h 89 uint32_t thread_id:6; member in struct:SQ_IND_INDEX_BITS::__anon842c909b0708
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_debugging.cc 237 int __tsan_get_alloc_stack(uptr addr, uptr *trace, uptr size, int *thread_id,
247 *thread_id = b->tid;
tsan_interface.h 178 int __tsan_get_alloc_stack(uptr addr, uptr *trace, uptr size, int *thread_id,

Completed in 15 milliseconds