Searched defs:parent (Results 1 - 12 of 12) 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/tools/versioner/src/
H A DUtils.h50 std::string parent = dirname(path); local
51 if (parent == path) {
55 if (!mkdirs(parent)) {
/bionic/libc/bionic/
H A Dpthread_atfork.cpp41 void (*parent)(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
146 if (it->parent != nullptr) {
147 it->parent();
155 extern "C" int __register_atfork(void (*prepare)(void), void (*parent)(void), argument
163 entry->parent = parent;
H A Dfts.c79 FTSENT *parent, *tmp; local
105 /* Allocate/initialize root's parent. */
106 if ((parent = fts_alloc(sp, "", 0)) == NULL)
108 parent->fts_level = FTS_ROOTPARENTLEVEL;
121 p->fts_parent = parent;
170 free(parent);
175 free(parent);
214 * list which has a valid parent pointer.
326 * to make the names come out right, and set the parent errno
329 * directories back to the parent w
[all...]
/bionic/libc/kernel/uapi/linux/
H A Ddlm_device.h36 __u32 parent; member in struct:dlm_lock_params
H A Diso_fs.h162 char parent[2]; member in struct:iso_path_table
H A Dfuse.h556 uint64_t parent; member in struct:fuse_notify_inval_entry_out
562 uint64_t parent; member in struct:fuse_notify_delete_out
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Ddlm_device.h36 __u32 parent; member in struct:dlm_lock_params
H A Diso_fs.h162 char parent[2]; member in struct:iso_path_table
H A Dfuse.h556 uint64_t parent; member in struct:fuse_notify_inval_entry_out
562 uint64_t parent; member in struct:fuse_notify_delete_out
/bionic/libdl/
H A Dlibdl.c85 struct android_namespace_t* parent,
168 struct android_namespace_t* parent) {
175 parent,
163 android_create_namespace(const char* name, const char* ld_library_path, const char* default_library_path, uint64_t type, const char* permitted_when_isolated_path, struct android_namespace_t* parent) argument

Completed in 1450 milliseconds