Searched refs:root (Results 1 - 17 of 17) 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);
58 void config_free(cnode *root);
/system/core/rootdir/
H A Dinit.trace.rc9 chown root shell /sys/kernel/debug/tracing/trace_clock
10 chown root shell /sys/kernel/debug/tracing/buffer_size_kb
11 chown root shell /sys/kernel/debug/tracing/options/overwrite
12 chown root shell /sys/kernel/debug/tracing/options/print-tgid
13 chown root shell /sys/kernel/debug/tracing/events/sched/sched_switch/enable
14 chown root shell /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable
15 chown root shell /sys/kernel/debug/tracing/events/power/cpu_frequency/enable
16 chown root shell /sys/kernel/debug/tracing/events/power/cpu_idle/enable
17 chown root shell /sys/kernel/debug/tracing/events/power/clock_set_rate/enable
18 chown root shel
[all...]
/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
319 config_free(cnode *root) argument
[all...]
/system/media/audio_utils/tests/
H A Dbuild_and_run_all_unit_tests.sh18 adb root && adb wait-for-device remount
/system/security/keystore/
H A Dtest-keystore76 # basic tests as system/root
78 log "root does not have permission to run test"
79 keystore root t
124 log "root can read system user keys (as can wifi or vpn users)"
125 keystore root g baz
243 keystore root g baz
254 keystore root g baz
/system/core/libdiskconfig/
H A Ddiskconfig.c94 load_partitions(cnode *root, struct disk_info *dinfo) argument
99 for (partnode = root->first_child; partnode; partnode = partnode->next) {
146 cnode *root = config_node("", ""); local
162 config_load_file(root, fn);
163 if (root->first_child == NULL) {
168 if (!(devroot = config_find(root, "device"))) {
/system/core/libprocessgroup/
H A Dprocessgroup.cpp189 DIR *root = opendir(PROCESSGROUP_CGROUP_PATH); local
190 if (root == NULL) {
195 while ((readdir_r(root, &cur, &dir) == 0) && dir) {
210 closedir(root);
/system/core/sdcard/
H A Dsdcard.c57 * It must be run as root, but will drop to requested UID/GID as soon as it
79 * rwxrwx--x root:sdcard_rw /
80 * rwxrwx--- root:sdcard_pics /Pictures
81 * rwxrwx--- root:sdcard_av /Music
83 * rwxrwx--x root:sdcard_rw /Android
84 * rwxrwx--x root:sdcard_rw /Android/data
86 * rwxrwx--x root:sdcard_rw /Android/obb/
89 * rwxrwx--- root:sdcard_all /Android/user
90 * rwxrwx--x root:sdcard_rw /Android/user/10
135 /* This node is one level above a normal root; use
224 struct node root; member in struct:fuse
[all...]
/system/media/camera/docs/
H A Dmetadata_template.mako42 % for root in metadata.outer_namespaces:
43 <namespace name="${root.name}">
44 % for section in root.sections:
H A Dhtml.mako156 % for root in metadata.outer_namespaces:
157 % for section in root.sections:
190 % for root in metadata.outer_namespaces:
191 <!-- <namespace name="${root.name}"> -->
192 % for section in root.sections:
H A Dmetadata_model.py417 root = self._dictionary_by_name(self._outer_namespaces)
418 for ons_name, ons in root.iteritems():
423 ons = root.get(ons_name, OuterNamespace(ons_name, self))
424 root[ons_name] = ons
429 for ons_name, ons in root.iteritems():
589 parent: An edge to the parent, which is always the Metadata root node.
623 parent: An edge to the parent, which is always the Metadata root node.
652 parent: An edge to the parent, which is always the Metadata root node.
H A Dmetadata_helpers.py48 def find_all_sections(root):
53 root: a Metadata instance
61 return root.find_all(_is_sec_or_ins)
108 Calculate a period-separated string path from the root to this element,
708 metadata: A Metadata instance, representing the the top-level root
871 metadata: A Metadata instance, the root of the metadata properties tree
/system/core/fastbootd/commands/
H A Dpartitions.c695 static int GPT_parse_cnode(cnode *root, struct GPT_content *content) argument
699 if (!(partnode = config_find(root, "partitions"))) {
704 GPT_parse_header(root, content);
722 cnode *root = config_node("", ""); local
736 config_load(root, data);
738 if (root->first_child == NULL) {
743 ret = GPT_parse_cnode(root, content);
/system/core/init/
H A Ddevices.c465 /* skip root hub name and device. use device interface */
843 char *root, *loading, *data, *file1 = NULL, *file2 = NULL, *file3 = NULL; local
850 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path);
854 l = asprintf(&loading, "%sloading", root);
858 l = asprintf(&data, "%sdata", root);
905 INFO("firmware: copy success { '%s', '%s' }\n", root, uevent->firmware);
907 INFO("firmware: copy failure { '%s', '%s' }\n", root, uevent->firmware);
923 free(root);
/system/extras/tests/ext4/
H A Dandroid_emmc_perf_tests.sh84 adb root
/system/vold/
H A DVolumeManager.cpp1890 const char* root = NULL; local
1892 root = emulated_source;
1896 root = vol->getMountpoint();
1900 if (!root) {

Completed in 418 milliseconds