/external/toybox/toys/other/ |
chcon.c | 43 for (file = toys.optargs+1; *file; file++) dirtree_read(*file, do_chcon);
|
lsusb.c | 48 dirtree_read("/sys/bus/usb/devices/", list_device);
|
acpi.c | 140 dirtree_read("/sys/class/power_supply", acpi_callback); 141 if (toys.optflags & FLAG_t) dirtree_read("/sys/class", temp_callback); 142 if (toys.optflags & FLAG_c) dirtree_read("/sys/class/thermal", cool_callback);
|
sysctl.c | 109 if (!access(path, R_OK)) dirtree_read(path, do_show_keys); 120 if (toys.optflags & FLAG_a) dirtree_read("/proc/sys", do_show_keys);
|
lspci.c | 129 dirtree_read("/sys/bus/pci/devices", do_lspci);
|
switch_root.c | 87 dirtree_read("/", del_node);
|
lsattr.c | 167 if (!*toys.optargs) dirtree_read(".", retell_dir); 174 dirtree_read(*toys.optargs, retell_dir); 311 for (; *argv; argv++) dirtree_read(*argv, update_attr);
|
hwclock.c | 82 dirtree_read("/sys/class/rtc", rtc_find);
|
modinfo.c | 115 dirtree_read(toybuf, check_module);
|
taskset.c | 114 dirtree_read(buf, task_callback);
|
losetup.c | 178 dirtree_read("/dev", dash_a);
|
/external/toybox/toys/posix/ |
chmod.c | 64 for (file = toys.optargs+1; *file; file++) dirtree_read(*file, do_chmod);
|
rm.c | 102 dirtree_read(*s, do_rm);
|
grep.c | 369 else dirtree_read(*ss, do_grep_r);
|
ps.c | [all...] |
/external/toybox/toys/pending/ |
mdev.c | 229 dirtree_read("/sys/class", callback); 230 dirtree_read("/sys/block", callback);
|
modprobe.c | 273 dirtree_read(tokens[1], config_action); 538 dirtree_read("/etc/modprobe.conf", config_action); 539 dirtree_read("/etc/modprobe.d", config_action); 540 if (TT.symreq) dirtree_read("modules.symbols", config_action); 541 if (TT.nudeps) dirtree_read("modules.alias", config_action);
|
lsof.c | 456 } else dirtree_read("/proc", scan_slash_proc);
|
mke2fs.c | 441 dti = dirtree_read(toybuf, dirtree_notdotdot);
|
netstat.c | 612 dirtree_read("/proc", scan_pids);
|
/external/toybox/lib/ |
dirtree.c | 189 struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node)) function
|
lib.h | 89 struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node));
|