/bionic/tests/libs/ |
H A D | pthread_atfork.cpp | 19 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/arch-common/bionic/ |
H A D | pthread_atfork.h | 19 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/libc/bionic/ |
H A D | pthread_atfork.cpp | 41 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 144 if (it->parent != nullptr) { 145 it->parent(); 153 extern "C" int __register_atfork(void (*prepare)(void), void (*parent)(void), argument 161 entry->parent = parent;
|
H A D | fts.c | 79 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/arch-arm/bionic/ |
H A D | __bionic_clone.S | 34 # save registers to parent stack 56 # In the parent, reload saved registers then either return or set errno.
|
/bionic/libc/kernel/tools/ |
H A D | utils.py | 35 parent = os.path.dirname(path) 36 #print "parent: %s <- %s" % (parent, path) 37 if parent == "/" or parent == "": 39 dirs.append(parent) 40 path = parent
|
/bionic/libc/arch-x86_64/bionic/ |
H A D | __bionic_clone.S | 74 # We're the parent; nothing to do.
|
/bionic/libc/kernel/uapi/linux/ |
H A D | dlm_device.h | 36 __u32 parent; member in struct:dlm_lock_params
|
H A D | iso_fs.h | 162 char parent[2]; member in struct:iso_path_table
|
H A D | fuse.h | 551 uint64_t parent; member in struct:fuse_notify_inval_entry_out 557 uint64_t parent; member in struct:fuse_notify_delete_out
|
/bionic/libc/arch-x86/bionic/ |
H A D | __bionic_clone.S | 52 # We're the parent; nothing to do.
|
/bionic/libc/tools/ |
H A D | gensyscalls.py | 38 parent = os.path.dirname(path) 39 if parent: 40 make_dir(parent)
|
/bionic/libc/upstream-dlmalloc/ |
H A D | malloc.c | 283 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...] |
/bionic/linker/ |
H A D | linker.cpp | 2300 child->parents_.remove_if([&] (const soinfo* parent) { 2301 return parent == this; 2305 parents_.for_each([&] (soinfo* parent) { 2306 parent->children_.remove_if([&] (const soinfo* child) {
|