Searched refs:parent (Results 1 - 12 of 12) sorted by relevance

/system/media/camera/docs/
H A Dmetadata_model_test.py10 kind = Kind("some_root_kind", parent=None)
11 ins_outer = InnerNamespace("static", parent=kind)
14 ins1 = InnerNamespace("ins1", parent=ins_outer)
15 ins1a = InnerNamespace("ins1", parent=ins_outer) # same name deliberately
17 parent=ins1)
19 parent=ins1a)
21 parent=ins_outer)
38 self.assertEquals(kind, combined_children_namespace.parent)
55 section = Section("some_section", parent=None)
56 kind_static = Kind("static", parent
[all...]
H A Dmetadata_helpers_test.py14 plain_enum = Enum(parent=None, values=['ON', 'OFF'])
20 labeled_enum = Enum(parent=None, values=['A', 'B', 'C'], ids={
30 mixed_enum = Enum(parent=None,
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...]
H A Dmetadata_helpers.py486 enum_value: an EnumValue node with a valid Enum parent
503 enum_value_siblings = list(enum_value.parent.values)
/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/sdcard/
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...]
H A Dfuse.h573 __u64 parent; member in struct:fuse_notify_inval_entry_out
/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/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/sh/
H A Deval.c484 * of the shell, which make the last process in a pipeline the parent
845 * child's address space is actually shared with the parent as
867 * so, set vforked = 2 so the parent
894 goto parent;
900 goto parent; /* at end of routine */
1070 parent: /* parent process gets here (if we forked) */
1096 * location of the command will be available in the parent as well as
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.h244 MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent);
H A DMIPSAssembler.cpp1251 MIPSAssembler::MIPSAssembler(const sp<Assembly>& assembly, ArmToMipsAssembler *parent) argument
1252 : mParent(parent),

Completed in 156 milliseconds