/external/compiler-rt/test/BlocksRuntime/ |
D | fail.c | 22 bool readfile(char *buffer, const char *from) { in readfile() function 84 bool gotErrorFile = readfile(desired, errorfile); in main() 85 bool gotOutput = readfile(got, buffer); in main()
|
/external/toybox/toys/posix/ |
D | kill.c | 114 if (!readfile(toybuf, toybuf, sizeof(toybuf))) continue; 120 if (!readfile(toybuf, toybuf, sizeof(toybuf)) || !*toybuf) continue;
|
D | ps.c | 1492 if (readfile("/proc/stat", pos = toybuf, sizeof(toybuf))) { in top_common() 1580 if (readfile("/proc/meminfo", toybuf, sizeof(toybuf))) { in top_common()
|
/external/toybox/toys/other/ |
D | login.c | 111 ss = readfile("/etc/nologin", toybuf, sizeof(toybuf)); in login_main() 125 if ((ss = readfile("/etc/motd", 0, 0))) puts(ss); in login_main()
|
D | pmap.c | 40 line = readfile(toybuf, 0, 0); in pmap_main()
|
D | sysctl.c | 75 data = readfile(path, 0, 0); in do_show_keys()
|
D | acpi.c | 121 if (readfile(TT.cpath, toybuf, 256) && !errno) { in cool_callback()
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | terms.php | 36 readfile($t_c_file);
|
D | est.php | 116 readfile("$osu_root/est/est-attrs.b64");
|
/external/skia/infra/bots/recipe_modules/run/examples/ |
D | full.py | 35 api.run.readfile('myfile.txt')
|
/external/skqp/infra/bots/recipe_modules/run/examples/ |
D | full.py | 35 api.run.readfile('myfile.txt')
|
/external/skqp/infra/bots/recipe_modules/run/ |
D | api.py | 40 def readfile(self, filename, *args, **kwargs): member in SkiaStepApi
|
/external/skia/infra/bots/recipe_modules/run/ |
D | api.py | 40 def readfile(self, filename, *args, **kwargs): member in SkiaStepApi
|
/external/python/cpython2/Lib/ |
D | imaplib.py | 1260 self.readfile = self.process.stdout 1265 return self.readfile.read(size) 1270 return self.readfile.readline() 1281 self.readfile.close()
|
/external/python/cpython3/Lib/ |
D | imaplib.py | 1337 self.readfile = self.process.stdout 1341 return self.readfile.read(size) 1346 return self.readfile.readline() 1357 self.readfile.close()
|
/external/ppp/pppd/ |
D | options.c | 154 static int readfile __P((char **)); 232 { "file", o_special, (void *)readfile, 1429 readfile(argv) in readfile() function
|
/external/toybox/toys/net/ |
D | netstat.c | 243 if (!(readfile(toybuf, toybuf, 256))) return 0; in scan_pids()
|
/external/toybox/toys/pending/ |
D | lsof.c | 394 if (!readfile(toybuf, toybuf, sizeof(toybuf)-1) || !(s = strchr(toybuf, '('))) in lsof_pid()
|
/external/toybox/lib/ |
D | lib.h | 208 char *readfile(char *name, char *buf, off_t len);
|
D | xwrap.c | 749 if (!(buf = readfile(name, buf, len))) perror_exit("Bad '%s'", name); in xreadfile()
|
D | lib.c | 543 char *readfile(char *name, char *ibuf, off_t len) in readfile() function
|