/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-sharedarraybuffer-gen.cc | 30 Label* detached); 57 Label* detached) { in ValidateIntegerTypedArray() 71 // Fail if the array's JSArrayBuffer is detached. in ValidateIntegerTypedArray() 73 GotoIf(IsDetachedBuffer(array_buffer), detached); in ValidateIntegerTypedArray() local 137 // detached, and detachment state must be checked and throw before this 180 Label detached(this); 185 &elements_kind, &backing_store, &detached); 196 // buffer to become detached. 197 GotoIf(IsDetachedBuffer(array_buffer), &detached); 258 BIND(&detached); 54 ValidateIntegerTypedArray( TNode<Object> maybe_array, TNode<Context> context, TNode<Int32T>* out_elements_kind, TNode<RawPtrT>* out_backing_store, Label* detached) ValidateIntegerTypedArray() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | typeGuardFunctionOfFormThisErrors.js | 53 let detached = a.isFollower; 55 if (detached()) { 133 var detached = a.isFollower;
variable 134 if (detached()) {
162 declare let detached: () => this is FollowerGuard;
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/memory/ |
H A D | assertions.js | 1 function assert_ArrayBuffer(actual, { size=0, shared=false, detached=false }, message) { 9 if (detached) { 17 assert_equals(byteLength, 0, `${message}: detached size`);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/ |
H A D | 1-2.c | 107 /* Post the semaphore to unlock the main thread in case of a detached thread */ in threaded() 135 if (scenarii[sc].detached != 0) { /* only joinable threads can be detached */ in main() 145 /* for detached scenarii, we will call pthread_detach from inside the thread. in main() 150 (scenarii[sc].detached != 0) ? &ret : NULL); in main() 190 if (scenarii[sc].detached == 0) { in main() 202 ("We were able to join a detached thread."); in main()
|
H A D | 2-2.c | 151 if (scenarii[sc].detached != 0) { /* only joinable threads can be detached */ in main() 161 /* for detached scenarii, we will call pthread_detach from inside the thread. in main() 166 (scenarii[sc].detached != 0) ? &ret : NULL); in main() 196 if (scenarii[sc].detached == 0) { in main()
|
/third_party/libwebsockets/lib/misc/lwsac/ |
H A D | lwsac.c | 314 __func__, head, lachead->detached, lachead->refcount); in lwsac_reference() 333 __func__, *head, lachead->detached, lachead->refcount); in lwsac_unreference() 335 if (lachead->detached && !lachead->refcount) { in lwsac_unreference() 351 lachead->detached = 1; in lwsac_detach() 356 lwsl_debug("%s: head %p: refcount %d: Marked as detached\n", in lwsac_detach()
|
H A D | cached-file.c | 54 * - the old cache lac, if any, is detached (so it will be freed when its 102 if (lachead->refcount && !--lachead->refcount && lachead->detached) { in lwsac_use_cached_file_end() 117 lachead->detached = 1; in lwsac_use_cached_file_detach()
|
H A D | private-lib-misc-lwsac.h | 37 * can be detached from the formal head and free itself when its reference 61 char detached; /* if our refcount gets to zero, free the chunk list */ member
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
H A D | threads_scenarii.c | 30 int detached; /* 0 => joinable; 1 => detached */ member 44 sem_t sem; /* This semaphore is used to signal the end of the detached threads execution */ 48 .detached=det, \ 66 * -> Do not have a detached thread use an alternative stack; 75 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 182 if (scenarii[i].detached == 1) { in scenar_init() 493 if (scenarii[sc].detached == 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/ |
H A D | threads_scenarii.c | 30 int detached; /* 0 => joinable; 1 => detached */ member 44 sem_t sem; /* This semaphore is used to signal the end of the detached threads execution */ 48 .detached=det, \ 66 * -> Do not have a detached thread use an alternative stack; 75 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 182 if (scenarii[i].detached == 1) { in scenar_init() 493 if (scenarii[sc].detached == 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/ |
H A D | threads_scenarii.c | 33 /* 0 => joinable; 1 => detached */ 34 int detached; member 85 * the detached threads execution 91 .detached = det, \ 114 * -> Do not have a detached thread use an alternative stack; 121 CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached"), 233 if (scenarii[i].detached == 1) { in scenar_init() 529 if (scenarii[sc].detached == 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/ |
H A D | threads_scenarii.c | 30 int detached; /* 0 => joinable; 1 => detached */ member 44 sem_t sem; /* This semaphore is used to signal the end of the detached threads execution */ 48 .detached=det, \ 66 * -> Do not have a detached thread use an alternative stack; 76 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 101 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 123 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 145 , CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached") 249 if (scenarii[i].detached in scenar_init() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | RefCountedTests.cpp | 285 RCTest* detached = test.Detach(); in TEST() local 286 EXPECT_EQ(detached, original); in TEST() 287 EXPECT_EQ(detached->GetRefCountForTesting(), 1u); in TEST() 290 detached->Release(); in TEST()
|
/third_party/node/test/fixtures/ |
H A D | parent-process-nonpersistent.js | 7 detached: true,
|
/third_party/node/lib/ |
H A D | child_process.js | 107 * detached?: boolean; 579 // Validate detached, if present. 580 if (options.detached != null) { 581 validateBoolean(options.detached, 'options.detached'); 711 detached: !!options.detached, 740 * detached?: boolean;
|
/third_party/node/test/fixtures/wpt/encoding/streams/ |
H A D | invalid-realm.window.js | 1 // Text*Stream should still work even if the realm is detached. 18 }, 'TextDecoderStream: write in detached realm should succeed'); 28 }, 'TextEncoderStream: write in detached realm should succeed'); 36 }, `${type}: close in detached realm should succeed`);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
H A D | 1-2.c | 21 * the argument (if the thread is not detached). 115 if (scenarii[i].detached == 0) { in main()
|
H A D | 4-1.c | 132 if (scenarii[i].detached == 0) { in main()
|
H A D | 2-2.c | 134 if (scenarii[i].detached == 0) { in main()
|
H A D | 5-1.c | 159 if (scenarii[i].detached == 0) { in main()
|
/third_party/node/test/parallel/ |
H A D | test-cluster-fork-windowsHide.js | 9 // attaching processes spawned by detached processes. i.e. 10 // - If process D is spawned by process C with `detached: true`, 11 // and process W is spawned by process D with `detached: false`, 13 // - If D is spawned by C with `detached: false` or W is spawned 14 // by D with `detached: true`, no console window will pop up for W. 16 // So, we have to spawn a detached process first to run the actual test. 20 { detached: true, stdio: ['ignore', 'ignore', 'ignore', 'ipc'] });
|
H A D | test-listen-fd-detached-inherit.js | 83 // Listen on port, and then pass the handle to the detached child. 94 detached: true
|
H A D | test-listen-fd-detached.js | 92 detached: true
|
H A D | test-worker-debug.js | 141 const detached = waitForWorkerDetach(session, sessionId); 158 await Promise.all([worker, detached, contextEventPromises]);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
H A D | 4-1.c | 93 if (scenarii[sc].detached == 1) in main()
|