Searched refs:cnode (Results 1 - 3 of 3) sorted by relevance

/system/core/include/cutils/
H A Dconfig_utils.h24 typedef struct cnode cnode; typedef in typeref:struct:cnode
27 struct cnode struct
29 cnode *next;
30 cnode *first_child;
31 cnode *last_child;
37 void config_load(cnode *root, char *data);
40 void config_load_file(cnode *root, const char *fn);
43 cnode* config_node(const char *name, const char *value);
46 cnode* config_fin
[all...]
/system/core/libcutils/
H A Dconfig_utils.c26 cnode* config_node(const char *name, const char *value)
28 cnode *node;
30 node = calloc(sizeof(cnode), 1);
39 cnode* config_find(cnode *root, const char *name)
41 cnode *node, *match = NULL;
51 static cnode* _config_create(cnode *root, const char *name)
53 cnode *node;
67 int config_bool(cnode *roo
[all...]
/system/core/libdiskconfig/
H A Ddiskconfig.c93 load_partitions(cnode *root, struct disk_info *dinfo)
95 cnode *partnode;
143 cnode *devroot;
144 cnode *partnode;
145 cnode *root = config_node("", "");

Completed in 434 milliseconds