Searched refs:root (Results 1 - 7 of 7) sorted by relevance

/system/extras/tests/fstest/
H A Dperm_checker.conf1 / 755 755 root root root root
2 /* 400 755 root root root root
5 /cache/lost+found/ 700 770 root root roo
[all...]
/system/core/include/cutils/
H A Dconfig_utils.h37 void config_load(cnode *root, char *data);
40 void config_load_file(cnode *root, const char *fn);
46 cnode* config_find(cnode *root, const char *name);
49 int config_bool(cnode *root, const char *name, int _default);
52 const char* config_str(cnode *root, const char *name, const char *_default);
55 void config_set(cnode *root, const char *name, const char *value);
/system/core/libcutils/
H A Dconfig_utils.c39 cnode* config_find(cnode *root, const char *name) argument
44 for(node = root->first_child; node; node = node->next)
51 static cnode* _config_create(cnode *root, const char *name) argument
57 if(root->last_child)
58 root->last_child->next = node;
60 root->first_child = node;
62 root->last_child = node;
67 int config_bool(cnode *root, const char *name, int _default) argument
71 node = config_find(root, name);
85 const char* config_str(cnode *root, cons argument
95 config_set(cnode *root, const char *name, const char *value) argument
262 parse_expr(cstate *cs, cnode *root) argument
292 config_load(cnode *root, char *data) argument
312 config_load_file(cnode *root, const char *fn) argument
[all...]
/system/core/libdiskconfig/
H A Ddiskconfig.c93 load_partitions(cnode *root, struct disk_info *dinfo) argument
98 for (partnode = root->first_child; partnode; partnode = partnode->next) {
145 cnode *root = config_node("", ""); local
161 config_load_file(root, fn);
162 if (root->first_child == NULL) {
167 if (!(devroot = config_find(root, "device"))) {
/system/core/libacc/tests/
H A Dtest.py85 for root, dirs, files in os.walk("data"):
87 adb(["shell", "mkdir", os.path.join(root, d)])
89 adb(["push", os.path.join(root, f), os.path.join("/system/bin/accdata", root, f)])
/system/core/sdcard/
H A Dsdcard.c44 * It must be run as root, but will change to uid/gid as soon as it
111 struct node root; member in struct:fuse
168 /* all files owned by root.sdcard */
220 fuse->all = &fuse->root;
222 fuse->root.nid = FUSE_ROOT_ID; /* 1 */
223 fuse->root.next = 0;
224 fuse->root.child = 0;
225 fuse->root.parent = 0;
227 fuse->root.all = 0;
228 fuse->root
[all...]
/system/core/init/
H A Ddevices.c503 char *root, *loading, *data, *file1 = NULL, *file2 = NULL; local
509 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
513 l = asprintf(&loading, "%sloading", root);
517 l = asprintf(&data, "%sdata", root);
545 log_event_print("firmware copy success { '%s', '%s' }\n", root, uevent->firmware);
547 log_event_print("firmware copy failure { '%s', '%s' }\n", root, uevent->firmware);
562 free(root);
617 /* message from non-root user, ignore */

Completed in 91 milliseconds