/system/core/rootdir/ |
D | ueventd.rc | 4 /dev/null 0666 root root 5 /dev/zero 0666 root root 6 /dev/full 0666 root root 7 /dev/ptmx 0666 root root 8 /dev/tty 0666 root root 9 /dev/random 0666 root root 10 /dev/urandom 0666 root root 12 /dev/hw_random 0440 root system 13 /dev/ashmem 0666 root root 14 /dev/binder 0666 root root [all …]
|
D | init.trace.rc | 9 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 shell /sys/kernel/debug/tracing/events/cpufreq_interactive/enable [all …]
|
D | init.rc | 39 mkdir /sys/fs/cgroup/memory 0750 root system 42 chown root system /sys/fs/cgroup/memory/tasks 44 mkdir /sys/fs/cgroup/memory/sw 0750 root system 47 chown root system /sys/fs/cgroup/memory/sw/tasks 53 mkdir /config 0500 root root 57 mkdir /mnt 0755 root system 61 mkdir /mnt/secure 0700 root root 62 mkdir /mnt/secure/asec 0700 root root 63 mkdir /mnt/asec 0755 root system 64 mkdir /mnt/obb 0755 root system [all …]
|
D | init.zygote32_64.rc | 3 socket zygote stream 660 root system 11 socket zygote_secondary stream 660 root system
|
D | init.zygote64_32.rc | 3 socket zygote stream 660 root system 11 socket zygote_secondary stream 660 root system
|
D | init.zygote32.rc | 3 socket zygote stream 660 root system
|
D | init.zygote64.rc | 3 socket zygote stream 660 root system
|
/system/core/libcutils/ |
D | config_utils.c | 39 cnode* config_find(cnode *root, const char *name) in config_find() argument 44 for(node = root->first_child; node; node = node->next) in config_find() 51 static cnode* _config_create(cnode *root, const char *name) in _config_create() argument 57 if(root->last_child) in _config_create() 58 root->last_child->next = node; in _config_create() 60 root->first_child = node; in _config_create() 62 root->last_child = node; in _config_create() 67 int config_bool(cnode *root, const char *name, int _default) in config_bool() argument 71 node = config_find(root, name); in config_bool() 85 const char* config_str(cnode *root, const char *name, const char *_default) in config_str() argument [all …]
|
/system/bt/osi/src/ |
D | buffer.c | 29 buffer_t *root; member 44 buffer->root = buffer; in buffer_new() 67 ret->root = buf->root; in buffer_new_slice() 71 ++buf->root->refcount; in buffer_new_slice() 80 if (buffer->root != buffer) { in buffer_free() 82 if (--buffer->root->refcount == 0) in buffer_free() 83 osi_free(buffer->root); in buffer_free() 93 return buf->root->data + buf->root->length - buf->length; in buffer_ptr()
|
/system/core/include/cutils/ |
D | config_utils.h | 37 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/ |
D | CleanSpec.mk | 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/root/init.rc) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/root/init.rc) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/root/default.prop) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/recovery/root/default.prop)
|
/system/security/keystore/ |
D | test-keystore | 79 keystore root t 125 keystore root g baz 243 keystore root g baz 254 keystore root g baz
|
/system/core/libdiskconfig/ |
D | diskconfig.c | 94 load_partitions(cnode *root, struct disk_info *dinfo) in load_partitions() argument 99 for (partnode = root->first_child; partnode; partnode = partnode->next) { in load_partitions() 146 cnode *root = config_node("", ""); in load_diskconfig() local 162 config_load_file(root, fn); in load_diskconfig() 163 if (root->first_child == NULL) { in load_diskconfig() 168 if (!(devroot = config_find(root, "device"))) { in load_diskconfig()
|
/system/extras/tests/net_test/ |
D | README | 31 machine" whose root filesystem is the supplied Debian disk image. The machine 32 boots, mounts the root filesystem read-only, runs the specified test from init, and then drops to a… 66 net_test mounts the root filesystem read-only, and runs the test from init, but 69 apt-get install. Log in as root with no password. By default, the filesystem is
|
/system/core/libprocessgroup/ |
D | processgroup.cpp | 191 DIR *root = opendir(PROCESSGROUP_CGROUP_PATH); in removeAllProcessGroups() local 192 if (root == NULL) { in removeAllProcessGroups() 197 while ((readdir_r(root, &cur, &dir) == 0) && dir) { in removeAllProcessGroups() 212 closedir(root); in removeAllProcessGroups()
|
/system/extras/tests/workloads/ |
D | defs.sh | 271 if [ "$user" = root ]; then 279 if [ "$user" = root ]; then 293 if [ "$user" = root ]; then 427 user=root
|
/system/media/audio_utils/tests/ |
D | build_and_run_all_unit_tests.sh | 18 adb root && adb wait-for-device remount
|
/system/core/init/ |
D | devices.cpp | 804 char *root, *loading, *data; in process_firmware_event() local 812 l = asprintf(&root, SYSFS_PREFIX"%s/", uevent->path); in process_firmware_event() 816 l = asprintf(&loading, "%sloading", root); in process_firmware_event() 820 l = asprintf(&data, "%sdata", root); in process_firmware_event() 842 INFO("firmware: copy success { '%s', '%s' }\n", root, uevent->firmware); in process_firmware_event() 844 INFO("firmware: copy failure { '%s', '%s' }\n", root, uevent->firmware); in process_firmware_event() 872 free(root); in process_firmware_event()
|
D | readme.txt | 83 Currently defaults to root. (??? probably should default to nobody) 86 still root, and then drop to your desired uid. 92 Currently defaults to root. (??? probably should default to nobody) 220 owned by the root user and root group. If provided, the mode, owner and group
|
/system/media/camera/docs/ |
D | metadata_template.mako | 42 % for root in metadata.outer_namespaces: 43 <namespace name="${root.name}"> 44 % for section in root.sections:
|
D | html.mako | 176 % for root in metadata.outer_namespaces: 177 % for section in root.sections: 210 % for root in metadata.outer_namespaces: 211 <!-- <namespace name="${root.name}"> --> 212 % for section in root.sections:
|
D | metadata_model.py | 417 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():
|
/system/core/sdcard/ |
D | sdcard.c | 200 struct node root; member 629 return &fuse->global->root; in lookup_node_by_id_locked() 1273 res = get_node_path_locked(&fuse->global->root, path, sizeof(path)); in handle_statfs() 1278 if (statfs(fuse->global->root.name, &stat) < 0) { in handle_statfs() 1798 memset(&global.root, 0, sizeof(global.root)); in run() 1799 global.root.nid = FUSE_ROOT_ID; /* 1 */ in run() 1800 global.root.refcount = 2; in run() 1801 global.root.namelen = strlen(source_path); in run() 1802 global.root.name = strdup(source_path); in run() 1803 global.root.userid = userid; in run() [all …]
|
/system/core/adb/tests/ |
D | test_adb.py | 188 def root(self): member in AdbWrapper 246 adb.root() 269 adb.root()
|
/system/bt/test/bluedroidtest/ |
D | README.txt | 26 root@android:/ # /system/bin/bdt
|