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

/system/core/include/utils/
H A DLruCache.h84 Entry* parent; member in struct:android::LruCache::Entry
87 Entry(TKey key_, TValue value_) : key(key_), value(value_), parent(NULL), child(NULL) {
199 entry.parent = mYoungest;
207 if (entry.parent != NULL) {
208 entry.parent->child = entry.child;
213 entry.child->parent = entry.parent;
215 mYoungest = entry.parent;
218 entry.parent = NULL;
/system/core/logwrapper/
H A Dlogwrap.c297 static int parent(const char *tag, int parent_read, pid_t pid, function
500 ERROR("Cannot create parent ptty\n");
552 rc = parent(argv[0], parent_ptty, pid, status, log_target,
/system/core/init/
H A Ddevices.c371 const char *parent; local
388 parent = strchr(uevent->path + pdev->path_len, '/');
389 if (!*parent)
392 if (!strncmp(parent, "/usb", 4)) {
394 while (*++parent && *parent != '/');
395 if (*parent)
396 while (*++parent && *parent != '/');
397 if (!*parent)
[all...]
/system/media/camera/docs/
H A Dmetadata_model.py47 parent: An edge to a parent Node.
57 def parent(self): member in class:Node
126 parent = self.parent
128 while parent is not None:
129 if pred(parent):
130 yield parent
131 parent = parent
[all...]
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.cpp1251 MIPSAssembler::MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent) argument
1252 : mParent(parent),
/system/core/sdcard/
H A Dfuse.h573 __u64 parent; member in struct:fuse_notify_inval_entry_out
H A Dsdcard.c130 /* Nothing special; this node should just inherit from its parent. */
176 struct node *parent; /* containing directory */ member in struct:node
278 static void add_node_to_parent_locked(struct node *node, struct node *parent) { argument
279 node->parent = parent;
280 node->next = parent->child;
281 parent->child = node;
282 acquire_node_locked(parent);
287 if (node->parent) {
288 if (node->parent
421 derive_permissions_locked(struct fuse* fuse, struct node *parent, struct node *node) argument
562 create_node_locked(struct fuse* fuse, struct node *parent, const char *name, const char* actual_name) argument
671 acquire_or_create_child_locked( struct fuse* fuse, struct node* parent, const char* name, const char* actual_name) argument
766 fuse_reply_entry(struct fuse* fuse, __u64 unique, struct node* parent, const char* name, const char* actual_name, const char* path) argument
[all...]

Completed in 189 milliseconds