Searched defs:parent (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_atfork.cpp38 void (*parent)(void); member in struct:atfork_t
50 // We lock the atfork list here, unlock it in the parent, and reset it in the child.
52 // to the prepare and parent/child handlers.
55 // the list before forking, and have prepare, parent, and child all work on the consistent copy.
59 // handlers should be called in the reverse order of the parent/child
80 if (it->parent != NULL) {
81 it->parent();
88 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void(*child)(void)) { argument
95 entry->parent = parent;
[all...]
H A Dfts.c78 FTSENT *parent, *tmp; local
104 /* Allocate/initialize root's parent. */
105 if ((parent = fts_alloc(sp, "", 0)) == NULL)
107 parent->fts_level = FTS_ROOTPARENTLEVEL;
120 p->fts_parent = parent;
169 free(parent);
174 free(parent);
213 * list which has a valid parent pointer.
325 * to make the names come out right, and set the parent errno
328 * 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.h535 uint64_t parent; member in struct:fuse_notify_inval_entry_out
541 uint64_t parent; member in struct:fuse_notify_delete_out
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c283 to initialize child lock while holding parent lock. The implementation
2345 | Pointer to parent |
2359 parent pointer.) If a chunk with the same size an an existing node
2401 struct malloc_tree_chunk* parent; member in struct:malloc_tree_chunk
3335 if (u->parent == 0) {
3340 assert(head == 0); /* only one node on chain has parent */
3342 assert(u->parent != u);
3343 assert (u->parent->child[0] == u ||
3344 u->parent->child[1] == u ||
3345 *((tbinptr*)(u->parent))
[all...]

Completed in 1253 milliseconds