Home
last modified time | relevance | path

Searched refs:child (Results 1 – 13 of 13) sorted by relevance

/bionic/libc/arch-common/bionic/
Dpthread_atfork.h19 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/
Dpthread_atfork.cpp19 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/
Dpthread_atfork.cpp40 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.S45 # 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.S34 # Push 'fn' and 'arg' onto the child stack.
41 # Are we the child?
/bionic/libc/arch-mips/bionic/
D__bionic_clone.S39 # set up child stack
57 # Clear return address in child so we don't unwind further.
/bionic/libc/arch-mips64/bionic/
D__bionic_clone.S50 # 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.S33 # Copy 'fn' and 'arg' onto the child stack.
/bionic/libc/arch-x86/bionic/
D__bionic_clone.S22 # Copy 'fn' and 'arg' onto the child stack
/bionic/linker/
Dlinker.cpp1255 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 …]
Dlinker.h290 void add_child(soinfo* child);
/bionic/tests/
Ddlext_test.cpp563 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/
Dfuse.h559 uint64_t child; member