| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/ |
| HD | lsan_mac.cpp | 65 u32 parent_tid; member 69 void lsan_register_worker_thread(int parent_tid) { in lsan_register_worker_thread() argument 71 u32 tid = ThreadCreate(parent_tid, 0, true); in lsan_register_worker_thread() 85 lsan_register_worker_thread(context->parent_tid); in lsan_dispatch_call_block_and_release() 104 lsan_ctxt->parent_tid = GetCurrentThread(); in alloc_lsan_context() 151 int parent_tid = GetCurrentThread(); \ 153 lsan_register_worker_thread(parent_tid); \
|
| HD | lsan_thread.cpp | 74 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached) { in ThreadCreate() argument 75 return thread_registry->CreateThread(user_id, detached, parent_tid, in ThreadCreate()
|
| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| HD | asan_mac.cpp | 174 u32 parent_tid; member 178 void asan_register_worker_thread(int parent_tid, StackTrace *stack) { in asan_register_worker_thread() argument 182 parent_tid, stack, /* detached */ true); in asan_register_worker_thread() 200 asan_register_worker_thread(context->parent_tid, &stack); in asan_dispatch_call_block_and_release() 219 asan_ctxt->parent_tid = GetCurrentTidOrInvalid(); in alloc_asan_context() 284 int parent_tid = GetCurrentTidOrInvalid(); \ 287 asan_register_worker_thread(parent_tid, &stack); \
|
| HD | asan_fuchsia.cpp | 90 static AsanThread *CreateAsanThread(StackTrace *stack, u32 parent_tid, in CreateAsanThread() argument 99 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); in CreateAsanThread() 152 u32 parent_tid = GetCurrentTidOrInvalid(); in BeforeThreadCreateHook() local 154 return CreateAsanThread(&stack, parent_tid, user_id, detached, name, in BeforeThreadCreateHook()
|
| HD | asan_rtems.cpp | 99 static AsanThread *CreateAsanThread(StackTrace *stack, u32 parent_tid, in CreateAsanThread() argument 106 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); in CreateAsanThread() 149 u32 parent_tid = GetCurrentTidOrInvalid(); in BeforeThreadCreateHook() local 151 return CreateAsanThread(&stack, parent_tid, user_id, detached, in BeforeThreadCreateHook()
|
| HD | asan_descriptions.cpp | 53 if (context->parent_tid == kInvalidTid) { in DescribeThread() 59 AsanThreadIdAndName(context->parent_tid).c_str()); in DescribeThread() 65 GetThreadContextByTidLocked(context->parent_tid); in DescribeThread()
|
| HD | asan_thread.h | 65 u32 parent_tid, StackTrace *stack, bool detached);
|
| HD | asan_thread.cpp | 78 u32 parent_tid, StackTrace *stack, in Create() argument 87 parent_tid, &args); in Create()
|
| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_thread_registry.cpp | 21 thread_type(ThreadType::Regular), parent_tid(0), next(0) { in ThreadContextBase() 89 parent_tid = _parent_tid; in SetCreated() 135 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid, in CreateThread() argument 167 parent_tid, arg); in CreateThread()
|
| HD | sanitizer_thread_registry.h | 55 u32 parent_tid; variable 107 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
|
| /freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | kmp_barrier.cpp | 373 kmp_int32 parent_tid = (tid - 1) >> branch_bits; in __kmp_tree_barrier_gather() local 378 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(parent_tid, team), in __kmp_tree_barrier_gather() 379 team->t.t_id, parent_tid, &thr_bar->b_arrived, thr_bar->b_arrived, in __kmp_tree_barrier_gather() 387 kmp_flag_64 flag(&thr_bar->b_arrived, other_threads[parent_tid]); in __kmp_tree_barrier_gather() 550 kmp_int32 parent_tid = tid & ~((1 << (level + branch_bits)) - 1); in __kmp_hyper_barrier_gather() local 555 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(parent_tid, team), in __kmp_hyper_barrier_gather() 556 team->t.t_id, parent_tid, &thr_bar->b_arrived, in __kmp_hyper_barrier_gather() 564 p_flag.set_waiter(other_threads[parent_tid]); in __kmp_hyper_barrier_gather() 820 thr_bar->parent_tid = -1; // default for master in __kmp_init_hierarchical_barrier_thread() 828 thr_bar->parent_tid = 0; in __kmp_init_hierarchical_barrier_thread() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
| HD | ProcessMessage.h | 91 static ProcessMessage NewThread(lldb::tid_t parent_tid, in NewThread() argument 93 return ProcessMessage(parent_tid, eNewThreadMessage, child_tid); in NewThread()
|
| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| HD | tsan_debugging.cpp | 167 int *running, const char **name, int *parent_tid, in __tsan_get_report_thread() argument 176 *parent_tid = thread->parent_tid; in __tsan_get_report_thread()
|
| HD | tsan_rtl_thread.cpp | 234 u32 parent_tid = thr ? thr->tid : kInvalidTid; // No parent for GCD workers. in ThreadCreate() local 236 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args); in ThreadCreate() 237 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", parent_tid, tid, uid); in ThreadCreate()
|
| HD | tsan_report.h | 97 u32 parent_tid; member
|
| HD | tsan_rtl_report.cpp | 204 rt->parent_tid = tctx->parent_tid; in AddThread()
|
| HD | tsan_report.cpp | 267 thread_name(thrbuf, rt->parent_tid)); in PrintThread()
|
| HD | tsan_interface.h | 167 int *running, const char **name, int *parent_tid,
|
| /freebsd-11-stable/sys/sys/ |
| HD | thr.h | 55 long *parent_tid; /* parent accesses the new TID here. */ member
|
| /freebsd-11-stable/sys/kern/ |
| HD | kern_thr.c | 159 (param->parent_tid != NULL && in thr_new_initthr() 160 suword_lwpid(param->parent_tid, td->td_tid))) in thr_new_initthr()
|
| /freebsd-11-stable/lib/libthr/thread/ |
| HD | thr_create.c | 164 param.parent_tid = &new_thread->tid; in _pthread_create()
|
| /freebsd-11-stable/sys/compat/freebsd32/ |
| HD | freebsd32.h | 210 uint32_t parent_tid; member
|
| /freebsd-11-stable/sys/dev/pst/ |
| HD | pst-iop.h | 430 u_int32_t parent_tid:12; member
|
| HD | pst-iop.c | 129 printf("parentid=%04x\n", sc->lct[i].parent_tid); in iop_attach()
|
| /freebsd-11-stable/sys/dev/qlnx/qlnxe/ |
| HD | fcoe_common.h | 941 __le32 parent_tid /* Parent tid. Used for write tasks in a continuation mode - Target only */; member
|