/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 | 22 status(ThreadStatusInvalid), detached(false), in ThreadContextBase() 59 CHECK_EQ(false, detached); in SetJoined() 71 if (!detached || status == ThreadStatusCreated) status = ThreadStatusFinished; in SetFinished() 88 detached = _detached; in SetCreated() 136 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid, in CreateThread() argument 173 tctx->SetCreated(user_id, total_threads_++, detached, in CreateThread() 251 tctx->detached = true; in DetachThread() 289 bool dead = tctx->detached; in FinishThread()
|
H A D | sanitizer_thread_registry.h | 51 bool detached; variable 109 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_fuchsia.cpp | 120 bool detached, const char *name) { in CreateAsanThread() argument 125 u32 tid = asanThreadRegistry().CreateThread(0, detached, parent_tid, &args); in CreateAsanThread() 171 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument 182 AsanThread *thread = CreateAsanThread(&stack, parent_tid, detached, name); in BeforeThreadCreateHook() 254 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() argument 258 reinterpret_cast<uptr>(thread), detached, name, in __sanitizer_before_thread_create_hook()
|
H A D | asan_win.cpp | 161 bool detached = false; // FIXME: how can we determine it on Windows? in INTERCEPTOR_WINAPI() local 164 AsanThread *t = AsanThread::Create(params, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_fuchsia.cpp | 94 static void *BeforeThreadCreateHook(uptr user_id, bool detached, in BeforeThreadCreateHook() argument 215 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() argument 219 reinterpret_cast<uptr>(thread), detached, name, in __sanitizer_before_thread_create_hook()
|
H A D | hwasan_interceptors.cpp | 272 bool detached = [attr]() { in INTERCEPTOR() local 284 hwasanThreadArgRetval().Create(detached, {callback, param}, [&]() -> uptr { in INTERCEPTOR()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_thread.cpp | 64 u32 ThreadCreate(u32 parent_tid, bool detached, void *arg) { in ThreadCreate() argument 65 return thread_registry->CreateThread(0, detached, parent_tid, arg); in ThreadCreate()
|
H A D | lsan_fuchsia.cpp | 95 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, in __sanitizer_before_thread_create_hook() 104 u32 tid = ThreadCreate(parent_tid, detached, &args); in __sanitizer_before_thread_create_hook() 94 __sanitizer_before_thread_create_hook(thrd_t thread,bool detached,const char * name,void * stack_base,size_t stack_size) __sanitizer_before_thread_create_hook() argument
|
H A D | lsan_thread.h | 53 u32 ThreadCreate(u32 tid, bool detached, void *arg = nullptr);
|
H A D | lsan_interceptors.cpp | 446 bool detached = [attr]() { in INTERCEPTOR() 465 GetThreadArgRetval().Create(detached, {callback, param}, [&]() -> uptr { in INTERCEPTOR() 467 th, attr, detached ? ThreadStartFunc<true> : ThreadStartFunc<false>, in INTERCEPTOR() 444 bool detached = [attr]() { INTERCEPTOR() local
|
/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() 232 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 | 76 bool detached) { in Create() argument 83 memprofThreadRegistry().CreateThread(0, detached, parent_tid, &args); in Create()
|
H A D | memprof_thread.h | 61 bool detached);
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | PKCS7_verify.pod | 26 I<indata> refers to the signed data if the content is detached from I<p7>. 41 the content is detached I<indata> cannot be NULL. If the content is 42 not detached and I<indata> is not NULL then the structure has both 125 be held in memory if it is not detached.
|
H A D | CMS_verify.pod | 27 I<indata> refers to the signed data if the content is detached from I<cms>. 41 the content is detached I<indata> cannot be NULL. 128 be held in memory if it is not detached.
|
H A D | CMS_final.pod | 19 processing: this is only used with detached data and will usually be set to
|
/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 | 136 large files. Streaming is automatically set for S/MIME signing with detached 148 This specifies a file containing the detached content, this is only 150 structure is using the detached signature form where the content is 324 B<-sign> operation if the content is not detached. 326 Streaming is always used for the B<-sign> operation with detached data but 416 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
|