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

/system/extras/tests/bionic/libc/common/
H A Dtest_clone.c62 int pid,child; local
72 printf ("child pid %d\n", pid);
75 child = waitpid (pid, &status, 0);
76 printf("waitpid returned %d\n", child);
77 if (child < 0) {
81 printf ("child %d, status 0x%x\n", child, status);
/system/extras/ext4_utils/
H A Dsetup_fs.c15 pid_t child; local
46 child = fork();
47 if (child < 0) {
51 if (child == 0) {
56 while ((pid=waitpid(-1, &status, 0)) != child) {
/system/core/include/utils/
H A DLruCache.h85 Entry* child; member in struct:android::LruCache::Entry
87 Entry(TKey key_, TValue value_) : key(key_), value(value_), parent(NULL), child(NULL) {
185 for (Entry* p = mOldest; p != NULL; p = p->child) {
200 mYoungest->child = &entry;
208 entry.parent->child = entry.child;
210 mOldest = entry.child;
212 if (entry.child != NULL) {
213 entry.child->parent = entry.parent;
219 entry.child
[all...]
/system/core/logwrapper/
H A Dlogwrap.c467 static void child(int argc, char* argv[]) { function
540 child(argc, argv);
/system/core/sdcard/
H A Dsdcard.c175 struct node *child; /* first contained file by this dir */ member in struct:node
280 node->next = parent->child;
281 parent->child = node;
288 if (node->parent->child == node) {
289 node->parent->child = node->parent->child->next;
292 node2 = node->parent->child;
659 for (node = node->child; node; node = node->next) {
675 struct node* child = lookup_child_by_name_locked(parent, name); local
676 if (child) {
[all...]

Completed in 165 milliseconds