Searched defs:child (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/arch-common/bionic/
H A Dpthread_atfork.h19 extern int __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void* dso);
26 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { argument
27 return __register_atfork(prepare, parent, child, &__dso_handle);
/bionic/tests/libs/
H A Dpthread_atfork.cpp19 extern "C" int proxy_pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { argument
20 return pthread_atfork(prepare, parent, child);
/bionic/libc/bionic/
H A Dpthread_atfork.cpp40 void (*child)(void); member in struct:atfork_t
117 // We lock the atfork list here, unlock it in the parent, and reset it in the child.
119 // to the prepare and parent/child handlers.
123 // handlers should be called in the reverse order of the parent/child
134 if (it->child != nullptr) {
135 it->child();
154 void(*child)(void), void* dso) {
162 entry->child = child;
/bionic/tests/
H A Ddlext_test.cpp432 // child process
437 fprintf(stderr, "in child: %s\n", dlerror());
563 pid_t child = fork(); local
564 if (child == 0) {
565 // close the 'wrong' ends of the pipes in the child
577 fprintf(stderr, "in child: %s\n", dlerror());
589 ASSERT_NOERROR(child);
595 // wait for the child to be done
599 // save the child's pid and the parent_done_pipe
600 child_pids[i] = child;
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dfuse.h559 uint64_t child; member in struct:fuse_notify_delete_out

Completed in 4038 milliseconds