| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_thread_arg_retval.cpp | 20 void ThreadArgRetval::CreateLocked(uptr thread, bool detached, in CreateLocked() argument 29 t.detached = detached; 47 if (t->second.detached) { in Finish() 48 // Retval of detached thread connot be retrieved. in Finish() 59 if (t && !t->second.detached) { in BeforeJoin() 67 } else if (t->second.detached) { in AfterJoin() 68 reason = "detached"; in AfterJoin() 83 CHECK(!t->second.detached); in DetachLocked() 91 CHECK(!t->second.detached); in GetAllPtrsLocked() [all...] |
| H A D | sanitizer_thread_arg_retval.h | 43 void Create(bool detached, const Args& args, const CreateFn& fn) { in Create() argument 44 // No need to track detached threads with no args, but we will to do as it's in Create() 48 CreateLocked(thread, detached, args); in Create() 54 // Mark thread as done and stores retval or remove if detached. Should be 58 // Mark thread as detached or remove if done. 100 bool detached; 104 void CreateLocked(uptr thread, bool detached, const Args& args); 99 bool detached; global() member
|
| H A D | sanitizer_thread_registry.cpp | 27 detached(false), in ThreadContextBase() 66 CHECK_EQ(false, detached); in SetJoined() 78 if (!detached || status == ThreadStatusCreated) in SetFinished() 97 detached = _detached; in SetCreated() 149 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid, in CreateThread() argument 188 tctx->SetCreated(user_id, total_threads_++, detached, parent_tid, stack_tid, in CreateThread() 266 tctx->detached = true; in DetachThread() 304 bool dead = tctx->detached; in FinishThread()
|
| H A D | sanitizer_thread_registry.h | 51 bool detached; variable 110 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, u32 stack_tid, 112 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg) { in CreateThread() argument 113 return CreateThread(user_id, detached, parent_tid, 0, arg); in CreateThread()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_fuchsia.cpp | 125 bool detached, const char *name) { in CreateAsanThread() argument 129 u32 tid = asanThreadRegistry().CreateThread(0, detached, parent_tid, thread); in CreateAsanThread() 175 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument 186 AsanThread *thread = CreateAsanThread(&stack, parent_tid, detached, name); in BeforeThreadCreateHook() 258 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() argument 262 reinterpret_cast<uptr>(thread), detached, name, in __sanitizer_before_thread_create_hook()
|
| H A D | asan_thread.h | 66 bool detached) { in Create() argument 67 return Create(&data, sizeof(data), parent_tid, stack, detached); in Create() 69 static AsanThread *Create(u32 parent_tid, StackTrace *stack, bool detached) { in Create() argument 70 return Create(nullptr, 0, parent_tid, stack, detached); in Create() 152 u32 parent_tid, StackTrace *stack, bool detached);
|
| H A D | asan_win.cpp | 160 bool detached = false; // FIXME: how can we determine it on Windows? in INTERCEPTOR_WINAPI() local 163 AsanThread *t = AsanThread::Create(params, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
|
| /freebsd/contrib/llvm-project/libc/src/__support/threads/ |
| H A D | thread.h | 159 bool detached = DEFAULT_DETACHED) { 163 detached); 169 bool detached = DEFAULT_DETACHED) { 173 detached); 200 size_t stacksize, size_t guardsize, bool detached);
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_fuchsia.cpp | 103 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument 224 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() argument 228 reinterpret_cast<uptr>(thread), detached, name, in __sanitizer_before_thread_create_hook()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_thread.cpp | 65 u32 ThreadCreate(u32 parent_tid, bool detached, void *arg) { in ThreadCreate() argument 66 return thread_registry->CreateThread(0, detached, parent_tid, arg); in ThreadCreate()
|
| H A D | lsan_fuchsia.cpp | 100 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() argument 109 u32 tid = ThreadCreate(parent_tid, detached, &args); in __sanitizer_before_thread_create_hook()
|
| H A D | lsan_thread.h | 53 u32 ThreadCreate(u32 tid, bool detached, void *arg = nullptr);
|
| H A D | lsan_interceptors.cpp | 475 bool detached = [attr]() { in INTERCEPTOR() local 494 GetThreadArgRetval().Create(detached, {callback, param}, [&]() -> uptr { in INTERCEPTOR() 496 th, attr, detached ? ThreadStartFunc<true> : ThreadStartFunc<false>, in INTERCEPTOR()
|
| /freebsd/crypto/heimdal/lib/hx509/ |
| H A D | test_cms.in | 199 --detached-signature \ 370 --detached-signature \ 406 --detached-signature \ 421 --detached-signature \ 430 --detached-signature \ 440 --detached-signature \ 451 --detached-signature \
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_thread.cpp | 42 if (tctx->detached || tctx->status != ThreadStatusFinished) in CollectThreadLeaks() 116 Tid ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) { in ThreadCreate() argument 130 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent, &arg); in ThreadCreate() 234 if (!thr->tctx->detached) { in ThreadFinish()
|
| /freebsd/sys/compat/linuxkpi/common/src/ |
| H A D | linux_aperture.c | 153 bool detached = !ap->dev; in devm_aperture_acquire_release() local 155 if (detached) in devm_aperture_acquire_release()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_interceptors.cpp | 138 int detached = 0; in INTERCEPTOR() local 140 REAL(pthread_attr_getdetachstate)(attr, &detached); in INTERCEPTOR() 155 &stack, detached); in INTERCEPTOR()
|
| H A D | memprof_thread.cpp | 73 bool detached) { in Create() argument 80 0, detached, parent_tid, stack ? StackDepotPut(*stack) : 0, thread); in Create()
|
| H A D | memprof_thread.h | 55 bool detached);
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | PKCS7_verify.pod | 28 I<indata> refers to the signed data if the content is detached from I<p7>. 43 the content is detached I<indata> cannot be NULL. If the content is 44 not detached and I<indata> is not NULL then the structure has both 127 be held in memory if it is not detached.
|
| H A D | CMS_verify.pod | 35 I<detached_data> refers to the signed data if the content is detached from I<cms>. 61 the content is detached I<detached_data> cannot be NULL. 151 be held in memory if it is not detached.
|
| /freebsd/sys/contrib/device-tree/Bindings/extcon/ |
| H A D | extcon-sm5502.txt | 6 attached or detached and button is pressed or released. It is interfaced to
|
| /freebsd/crypto/openssl/doc/ |
| H A D | fingerprints.txt | 7 The signature is a detached cleartxt signature, with the same name
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | openssl-smime.pod.in | 139 large files. Streaming is automatically set for S/MIME signing with detached 151 This specifies a file containing the detached content, this is only 153 structure is using the detached signature form where the content is 328 B<-sign> operation if the content is not detached. 330 Streaming is always used for the B<-sign> operation with detached data but 420 detached signature format. You can use this program to verify the
|
| /freebsd/lib/libsecureboot/ |
| H A D | README.rst | 4 This library depends one way or another on verifying detached digital 78 We expect ascii armored (``.asc``) detached signatures
|