HomeSort by relevance Sort by last modified time
    Searched refs:cnode (Results 1 - 8 of 8) sorted by null

  /system/core/include/cutils/
config_utils.h 24 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_find(cnode *root, const char *name)
    [all...]
  /external/webkit/JavaScriptCore/pcre/
ucpinternal.h 47 typedef struct cnode { struct
50 } cnode; typedef in typeref:struct:cnode
67 /* The data consists of a vector of structures of type cnode. The two unsigned
pcre_ucp_searchfuncs.cpp 66 int top = sizeof(ucp_table) / sizeof(cnode);
ucptable.cpp 4 static const cnode ucp_table[] = {
    [all...]
  /system/core/libcutils/
config_utils.c 26 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 *root, const char *name, int _default
    [all...]
  /bootable/diskinstaller/
installer.c 60 static cnode *
63 cnode *root = config_node("", "");
197 process_image_node(cnode *img, struct disk_info *dinfo, int test)
375 cnode *config;
376 cnode *images;
377 cnode *img;
  /bootable/diskinstaller/libdiskconfig/
diskconfig.c 93 load_partitions(cnode *root, struct disk_info *dinfo)
95 cnode *partnode;
141 cnode *devroot;
142 cnode *partnode;
143 cnode *root = config_node("", "");
  /system/core/libdiskconfig/
diskconfig.c 93 load_partitions(cnode *root, struct disk_info *dinfo)
95 cnode *partnode;
143 cnode *devroot;
144 cnode *partnode;
145 cnode *root = config_node("", "");

Completed in 42 milliseconds