| /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() 77 // as detached. in SetFinished() 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zhack/ |
| H A D | library.kshlib | 25 # Test whether zhack label repair commands can recover detached devices 52 # 4. Remove the non-detached device and its backing file 53 # 5. Verify that the remaining detached device cannot be imported 57 # 8. Verify that the detached device can be imported and that data is intact 64 # 4. Remove the non-detached device and its backing file 66 # 6. Verify that the remaining detached device cannot be imported 72 # 10. Verify that the detached device can be imported and that data is intact 79 # 4. Remove the non-detached device and its backing file 81 # 6. Verify that the remaining detached device cannot be imported 84 # 8. Verify that the detached device can be imported and that data is intact [all …]
|
| H A D | zhack_label_repair_002.ksh | 15 # detached drives on devices of varied size, but not 23 # 4. Remove the non-detached device and its backing file 24 # 5. Verify that the remaining detached device cannot be imported 28 # 8. Verify that the detached device can be imported and that data is intact
|
| H A D | zhack_label_repair_004.ksh | 15 # corrupted checksums and which has been detached (in one command). 22 # 4. Remove the non-detached device and its backing file 24 # 6. Verify that the remaining detached device cannot be imported 27 # 8. Verify that the detached device can be imported and that data is intact
|
| H A D | zhack_label_repair_003.ksh | 15 # corrupted checksums and which has been detached. 22 # 4. Remove the non-detached device and its backing file 24 # 6. Verify that the remaining detached device cannot be imported 30 # 10. Verify that the detached device can be imported and that data is intact
|
| /freebsd/contrib/llvm-project/libc/src/__support/threads/ |
| H A D | thread.h | 57 DETACHED = 0x33 enumerator 64 // Indicates that the detach operation just set the detach state to DETACHED 85 // 1. The a thread is created in a detached state, then user code should never 88 // The value of |detach_state| is expected to be DetachState::DETACHED for 94 // compare exchange to a state of DETACHED. The thread will clean 114 : detach_state(uint32_t(DetachState::DETACHED)), stack(nullptr), in ThreadAttributes() 159 bool detached = DEFAULT_DETACHED) { 163 detached); 169 bool detached = DEFAULT_DETACHED) { 173 detached); [all …]
|
| /freebsd/usr.sbin/devctl/ |
| H A D | devctl.8 | 111 the device driver will be detached even if the device is busy. 118 the device driver will be detached from the device, 123 the device driver will be detached even if the device is busy. 143 the device will be detached from its current device driver before it is 204 option is specified, drivers are detached instead. 217 If you have detached or suspended a child device explicitly and then 248 of the manually detached or suspended devices after reset.
|
| /freebsd/lib/libdevctl/ |
| H A D | devctl.3 | 119 The device is left detached until either a new driver for its parent 125 the current device driver will be detached even if the device is busy. 140 the device driver will be detached from the device, 145 the current device driver will be detached even if the device is busy. 146 The device will remain disabled and detached until it is explicitly enabled 177 the device will be detached from its current device driver before it is 193 the device will be detached from its current device driver. 230 argument, if true, specifies that the device driver is detached before 445 Or, if the driver for the device is detached manually, and
|
| /freebsd/crypto/heimdal/lib/hx509/ |
| H A D | test_cms.in | 196 echo "create signed data (pem, detached)" 199 --detached-signature \ 204 echo "verify signed data (pem, detached)" 367 echo "create signed data (detached)" 370 --detached-signature \ 374 echo "verify signed data (detached)" 382 echo "verify failure signed data (detached)" 402 echo "create signed data (pem, detached)" 406 --detached-signature \ 410 echo "verify signed data (pem, detached)" [all …]
|
| /freebsd/crypto/openssh/ |
| H A D | sshsig.h | 33 * Creates a detached SSH signature for a given buffer. 35 * out is populated with the detached signature, or NULL on failure. 43 * Verifies that a detached signature is valid and optionally returns key 54 * Creates a detached SSH signature for a given file. 56 * out is populated with the detached signature, or NULL on failure. 64 * Verifies that a detached signature over a file is valid and optionally
|
| /freebsd/share/man/man9/ |
| H A D | bus_attach_children.9 | 99 Child devices are detached in reverse order compared to 102 child devices are detached in decreasing order, 103 and child devices with the same order are detached in LIFO order. 104 Detached devices are not deleted.
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Tree.cpp | 40 this->setRole(NodeRole::Detached); in Node() 44 return getRole() == NodeRole::Detached; in isDetached() 52 assert(Child->getRole() == NodeRole::Detached); in appendChildLowLevel() 53 assert(Role != NodeRole::Detached); in appendChildLowLevel() 63 assert(Child->getRole() != NodeRole::Detached); in appendChildLowLevel() 76 assert(Child->getRole() == NodeRole::Detached); in prependChildLowLevel() 77 assert(Role != NodeRole::Detached); in prependChildLowLevel() 87 assert(Child->getRole() != NodeRole::Detached); in prependChildLowLevel() 109 assert(N->getRole() != NodeRole::Detached && "Roles must be set"); in replaceChildRangeLowLevel() 140 N->setRole(NodeRole::Detached); in replaceChildRangeLowLevel()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| 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_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()
|
| /freebsd/tests/sys/cddl/zfs/tests/zfsd/ |
| H A D | zfsd_import_001_pos.ksh | 53 # finished resilvering _before_ zfsd detached the spare. 100 # Verify that the spare was detached after the scrub was complete 120 print("Spare detached at txg", detach_txg); 123 [ $? -ne 0 ] && log_fail "The spare detached before the resilver completed"
|
| /freebsd/tests/sys/geom/class/eli/ |
| H A D | setkey_test.sh | 58 # Change current (1) key for detached provider. 71 # Change key 0 for detached provider. 125 # Change from passphrase 1 to passphrase 2 for the detached provider. 195 # Try to set the key for a detached device without providing any 200 # Try to set the key for a detached device without providing any
|
| H A D | kill_test.sh | 27 # Provider should be automatically detached. 52 # Kill detached provider. 87 # The provider will be detached
|
| H A D | delkey_test.sh | 60 # Remove key 1 for detached provider. 67 # We cannot remove last key without -f option (for detached provider). 71 # Remove last key for detached provider.
|
| /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.
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | PKCS7_verify.3 | 90 \&\fIindata\fR refers to the signed data if the content is detached from \fIp7\fR. 104 the content is detached \fIindata\fR cannot be NULL. If the content is 105 not detached and \fIindata\fR is not NULL then the structure has both 185 be held in memory if it is not detached.
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/mmp/ |
| H A D | mmp_hostid.ksh | 30 # 5. Verify vdevs may be attached and detached 80 # 5. Verify vdevs may be attached and detached 81 log_note "Verify vdevs may be attached and detached"
|
| /freebsd/share/man/man4/ |
| H A D | snp.4 | 63 device has been detached by user or tty device has been closed 64 and detached.
|