| /third_party/node/test/parallel/ |
| H A D | test-inspect-address-in-use.js | 28 const child = spawnSync(process.execPath, getArgs(port), options); 29 const stderr = child.stderr.toString().trim(); 30 const stdout = child.stdout.toString().trim(); 40 assert.strictEqual(child.status, exitCode);
|
| H A D | test-vm-sigint-existing-handler.js | 17 if (process.argv[2] === 'child') { 75 const child = spawn(process.execPath, [__filename, 'child', method], { 79 child.on('message', common.mustCall(() => { 82 process.kill(child.pid, 'SIGINT'); 85 child.on('close', common.mustCall((code, signal) => {
|
| /third_party/musl/libc-test/src/regression/ |
| H A D | raise-race.c | 14 static volatile int child; variable 25 case 0: child=1; break; in handler1() 40 t_error("lost signals: got %d, wanted 1000 (ischild %d forks %d)\n", c0, child, c1); in start() 41 if (child) in start() 51 t_error("child failed: pid:%d status:%d\n", r, s); in start()
|
| /third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/ |
| H A D | hugemmap08.c | 44 pid_t child; in test_chunk_overcommit() local 72 * this is bad. We touch it all in a child process because an in test_chunk_overcommit() 76 child = SAFE_FORK(); in test_chunk_overcommit() 78 if (child == 0) { in test_chunk_overcommit() 84 SAFE_WAITPID(child, &status, 0); in test_chunk_overcommit()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
| H A D | 7-3.c | 23 * 4. Fork a child process. 25 * 6. Check whether the change in step 3 is visible to the child. 47 pid_t child; in main() local 74 child = fork(); in main() 76 switch (child) { in main() 78 /* Mmap again the same shared memory to child's memory */ in main() 102 waitpid(child, &exit_stat, WUNTRACED); in main()
|
| H A D | 7-4.c | 23 * 4. Fork a child process. 25 * 6. Check whether the change in step 3 is visible to the child. 47 pid_t child; in main() local 77 child = fork(); in main() 78 switch (child) { in main() 80 /* Mmap again the same shared memory to child's memory */ in main() 84 printf("child: Error at mmap: %s\n", strerror(errno)); in main() 94 "into the child\n"); in main() 101 waitpid(child, &exit_stat, WUNTRACED); in main()
|
| H A D | 6-2.c | 21 * 1. Spawn a child process. 22 * 2. The child process mmap a memory region setting prot as PROT_NONE. 53 pid_t child; in main() local 66 child = fork(); in main() 67 switch (child) { in main() 96 waitpid(child, &status, 0); in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/ |
| H A D | 1-2.c | 122 pthread_t child; in main() local 149 pthread_create(&child, &scenarii[sc].ta, threaded, in main() 191 ret = pthread_detach(child); in main() 194 "Failed to detach the child thread."); in main() 199 ret = pthread_join(child, NULL); in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
| H A D | 4-1.c | 83 pthread_t child; in main() local 107 ret = pthread_create(&child, &scenarii[sc].ta, threaded, NULL); in main() 144 joiner_func, &child); in main() 164 /* Unblock the child thread */ in main() 170 ret = pthread_join(child, NULL); in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/ |
| H A D | stress.c | 108 pthread_t child; in threaded() local 119 ret = pthread_create(&child, NULL, th, arg); in threaded() 133 ret = pthread_cancel(child); in threaded() 141 ret = pthread_join(child, NULL); in threaded() 144 UNRESOLVED(ret, "Unable to join the child"); in threaded()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/ |
| H A D | objc_inheritance.rs | 46 fn from(child: Bar) -> Foo { in from() 47 Foo(child.0) in from() 81 fn from(child: Baz) -> Bar { in from() 82 Bar(child.0) in from() 99 fn from(child: Baz) -> Foo { in from() 100 Foo(child.0) in from()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/ |
| H A D | objc_inheritance.rs | 46 fn from(child: Bar) -> Foo { in from() 47 Foo(child.0) in from() 81 fn from(child: Baz) -> Bar { in from() 82 Bar(child.0) in from() 99 fn from(child: Baz) -> Foo { in from() 100 Foo(child.0) in from()
|
| /third_party/pulseaudio/src/modules/gsettings/ |
| H A D | gsettings-helper.c | 105 GSettings *child = g_settings_get_child(settings, *name); in main() local 107 /* The child may have been removed between the in main() 109 if (!child) in main() 112 g_ptr_array_add(groups, child); in main() 113 g_signal_connect(child, "changed", (GCallback) module_group_callback, *name); in main()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
| H A D | cord_internal.cc | 66 CordRep* child = rep_substring->child; in Destroy() local 69 if (!child->refcount.Decrement()) { in Destroy() 70 rep = child; in Destroy()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
| H A D | seed_sequences_test.cc | 105 URBG child(reusable_seed); in TestReproducibleVariateSequencesForNonsecureURBG() 107 variate = child(); in TestReproducibleVariateSequencesForNonsecureURBG() 112 URBG child(reusable_seed); in TestReproducibleVariateSequencesForNonsecureURBG() 114 ASSERT_EQ(variate, child()); in TestReproducibleVariateSequencesForNonsecureURBG()
|
| /third_party/skia/gm/ |
| H A D | destcolor.cpp | 29 static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> child) { in Make() argument 30 return std::unique_ptr<GrFragmentProcessor>(new DestColorTestFP(std::move(child))); in Make() 38 DestColorTestFP(std::unique_ptr<GrFragmentProcessor> child) in DestColorTestFP() argument 40 this->registerChild(std::move(child)); in DestColorTestFP()
|
| /third_party/mesa3d/src/compiler/nir/ |
| H A D | nir_control_flow.c | 655 foreach_list_typed(nir_cf_node, child, node, &if_stmt->then_list) in cleanup_cf_node() 656 cleanup_cf_node(child, impl); in cleanup_cf_node() 657 foreach_list_typed(nir_cf_node, child, node, &if_stmt->else_list) in cleanup_cf_node() 658 cleanup_cf_node(child, impl); in cleanup_cf_node() 666 foreach_list_typed(nir_cf_node, child, node, &loop->body) in cleanup_cf_node() 667 cleanup_cf_node(child, impl); in cleanup_cf_node() 672 foreach_list_typed(nir_cf_node, child, node, &impl->body) in cleanup_cf_node() 673 cleanup_cf_node(child, impl); in cleanup_cf_node() 772 foreach_list_typed(nir_cf_node, child, node, &if_stmt->then_list) in relink_jump_halt_cf_node() 773 relink_jump_halt_cf_node(child, end_bloc in relink_jump_halt_cf_node() [all...] |
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | flow.c | 597 struct basic_block *child; in mark_bb_reachable() local 602 FOR_EACH_PTR(bb->children, child) { in mark_bb_reachable() 603 mark_bb_reachable(child, generation); in mark_bb_reachable() 604 } END_FOR_EACH_PTR(child); in mark_bb_reachable() 622 struct basic_block *child, *parent; in kill_bb() local 636 FOR_EACH_PTR(bb->children, child) { in kill_bb() 637 remove_bb_from_list(&child->parents, bb, 0); in kill_bb() 638 } END_FOR_EACH_PTR(child); in kill_bb() 798 struct basic_block *child; in convert_to_jump() local 816 FOR_EACH_PTR(bb->children, child) { in convert_to_jump() 979 struct basic_block *parent, *child, *last; pack_basic_blocks() local [all...] |
| H A D | liveness.c | 230 struct basic_block *child; in track_pseudo_liveness() local 231 FOR_EACH_PTR(bb->children, child) { in track_pseudo_liveness() 232 if (pseudo_in_list(child->needs, def)) in track_pseudo_liveness() 234 } END_FOR_EACH_PTR(child); in track_pseudo_liveness() 290 struct basic_block *child; in track_pseudo_death_bb() local 293 FOR_EACH_PTR(bb->children, child) { in track_pseudo_death_bb() 294 merge_pseudo_list(child->needs, &live); in track_pseudo_death_bb() 295 } END_FOR_EACH_PTR(child); in track_pseudo_death_bb()
|
| /third_party/protobuf/src/google/protobuf/util/ |
| H A D | field_mask_util.cc | 340 Node*& child = node->children[node_name]; in AddPath() local 341 if (child == NULL) { in AddPath() 343 child = new Node(); in AddPath() 345 node = child; in AddPath() 460 const Node* child = it->second; in MergeMessage() local 467 if (!child->children.empty()) { in MergeMessage() 477 MergeMessage(child, source_reflection->GetMessage(source, field), options, in MergeMessage() 560 Node*& child = node->children[node_name]; in AddRequiredFieldPath() local 561 if (child == nullptr) { in AddRequiredFieldPath() 563 child in AddRequiredFieldPath() 579 Node* child = it->second; AddRequiredFieldPath() local 611 Node* child = it->second; TrimMessage() local [all...] |
| /third_party/node/test/report/ |
| H A D | test-report-uv-handles.js | 120 async function child() { 146 if (process.argv[2] === 'child') { 147 child(); 154 const child = fork(__filename, ['child'], options); 156 child.on('message', (data) => { child_data = data; }); 158 child.stderr.on('data', (chunk) => { stderr += chunk; }); 161 child.stdout.on('data', (chunk) => { stdout += chunk; }); 162 child.on('exit', common.mustCall((code, signal) => { 169 const reports = helper.findReports(child [all...] |
| /third_party/skia/src/gpu/effects/ |
| H A D | GrGaussianConvolutionFragmentProcessor.cpp | 152 std::unique_ptr<GrFragmentProcessor> child; 172 child = GrTextureEffect::MakeSubset(std::move(view), 181 child = GrTextureEffect::MakeSubset(std::move(view), 192 return child; 195 std::move(child), dir, halfWidth, gaussianSigma)); 199 std::unique_ptr<GrFragmentProcessor> child, 204 ProcessorOptimizationFlags(child.get())) 207 this->registerChild(std::move(child), SkSL::SampleUsage::Explicit());
|
| /third_party/skia/third_party/externals/spirv-tools/source/ |
| H A D | cfa.h | 40 bb_iter iter; ///< Iterator to the current child node being processed 159 BB* child = *top.iter; in DepthFirstTraversal() local 161 if (FindInWorkList(work_list, child->id())) { in DepthFirstTraversal() 162 backedge(top.block, child); in DepthFirstTraversal() 164 if (processed.count(child->id()) == 0) { in DepthFirstTraversal() 165 preorder(child); in DepthFirstTraversal() 167 block_info{child, std::begin(*successor_func(child))}); in DepthFirstTraversal() 168 processed.insert(child->id()); in DepthFirstTraversal()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
| H A D | cfa.h | 40 bb_iter iter; ///< Iterator to the current child node being processed 159 BB* child = *top.iter; in DepthFirstTraversal() local 161 if (FindInWorkList(work_list, child->id())) { in DepthFirstTraversal() 162 backedge(top.block, child); in DepthFirstTraversal() 164 if (processed.count(child->id()) == 0) { in DepthFirstTraversal() 165 preorder(child); in DepthFirstTraversal() 167 block_info{child, std::begin(*successor_func(child))}); in DepthFirstTraversal() 168 processed.insert(child->id()); in DepthFirstTraversal()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| H A D | js_hclass-inl.h | 46 void JSHClass::AddTransitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, in AddTransitions() argument 49 UpdateRootHClass(thread, parent, child); in AddTransitions() 52 JSTaggedValue weakChild = JSTaggedValue(child.GetTaggedValue().CreateAndGetWeakRef()); in AddTransitions() 73 transitions = TransitionsDictionary::PutIfAbsent(thread, dict, key, JSHandle<JSTaggedValue>(child), in AddTransitions() 79 const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key) in AddExtensionTransitions() 82 AddProtoTransitions(thread, parent, child, key, attr); in AddExtensionTransitions() 86 const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key, in AddProtoTransitions() 90 UpdateRootHClass(thread, parent, child); in AddProtoTransitions() 111 TransitionsDictionary::PutIfAbsent(thread, dict, key, JSHandle<JSTaggedValue>(child), proto).GetTaggedValue(); in AddProtoTransitions() 337 const JSHandle<JSHClass> &child) in UpdateRootHClass() 78 AddExtensionTransitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key) AddExtensionTransitions() argument 85 AddProtoTransitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &proto) AddProtoTransitions() argument 336 UpdateRootHClass(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child) UpdateRootHClass() argument [all...] |