Searched refs:child (Results 1 – 13 of 13) sorted by relevance
/bionic/libc/arch-common/bionic/ |
D | pthread_atfork.h | 19 extern int __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void… 26 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { in pthread_atfork() 27 return __register_atfork(prepare, parent, child, &__dso_handle); in pthread_atfork()
|
/bionic/tests/libs/ |
D | pthread_atfork.cpp | 19 extern "C" int proxy_pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void… in proxy_pthread_atfork() 20 return pthread_atfork(prepare, parent, child); in proxy_pthread_atfork()
|
/bionic/libc/bionic/ |
D | pthread_atfork.cpp | 40 void (*child)(void); member 134 if (it->child != nullptr) { in __bionic_atfork_run_child() 135 it->child(); in __bionic_atfork_run_child() 154 void(*child)(void), void* dso) { in __register_atfork() 162 entry->child = child; in __register_atfork()
|
/bionic/libc/arch-arm/bionic/ |
D | __bionic_clone.S | 45 # Push 'fn' and 'arg' onto the child stack. 52 # Are we the child? 63 1: # The child. 66 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
|
/bionic/libc/arch-arm64/bionic/ |
D | __bionic_clone.S | 34 # Push 'fn' and 'arg' onto the child stack. 41 # Are we the child?
|
/bionic/libc/arch-mips/bionic/ |
D | __bionic_clone.S | 39 # set up child stack 57 # Clear return address in child so we don't unwind further.
|
/bionic/libc/arch-mips64/bionic/ |
D | __bionic_clone.S | 50 # set up child stack 58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack 78 # Clear return address in child so we don't unwind further.
|
/bionic/libc/arch-x86_64/bionic/ |
D | __bionic_clone.S | 33 # Copy 'fn' and 'arg' onto the child stack.
|
/bionic/libc/arch-x86/bionic/ |
D | __bionic_clone.S | 22 # Copy 'fn' and 'arg' onto the child stack
|
/bionic/linker/ |
D | linker.cpp | 1255 si->get_children().for_each([&](soinfo* child) { in walk_dependencies_tree() argument 1256 visit_list.push_back(child); in walk_dependencies_tree() 2234 soinfo* child = nullptr; in soinfo_unload() local 2235 while ((child = si->get_children().pop_front()) != nullptr) { in soinfo_unload() 2237 child->get_realpath(), child); in soinfo_unload() 2239 if (local_unload_list.contains(child)) { in soinfo_unload() 2241 } else if (child->is_linked() && child->get_local_group_root() != root) { in soinfo_unload() 2242 external_unload_list.push_back(child); in soinfo_unload() 2244 unload_list.push_front(child); in soinfo_unload() 3166 void soinfo::add_child(soinfo* child) { in add_child() argument [all …]
|
D | linker.h | 290 void add_child(soinfo* child);
|
/bionic/tests/ |
D | dlext_test.cpp | 563 pid_t child = fork(); in SpawnChildrenAndMeasurePss() local 564 if (child == 0) { in SpawnChildrenAndMeasurePss() 589 ASSERT_NOERROR(child); in SpawnChildrenAndMeasurePss() 600 child_pids[i] = child; in SpawnChildrenAndMeasurePss()
|
/bionic/libc/kernel/uapi/linux/ |
D | fuse.h | 559 uint64_t child; member
|