/external/iptables/iptables/ |
ip6tables-save.c | 40 FILE *procfile = NULL; local 43 procfile = fopen("/proc/net/ip6_tables_names", "re"); 44 if (!procfile) 47 while (fgets(tablename, sizeof(tablename), procfile)) { 56 fclose(procfile);
|
iptables-save.c | 38 FILE *procfile = NULL; local 41 procfile = fopen("/proc/net/ip_tables_names", "re"); 42 if (!procfile) 45 while (fgets(tablename, sizeof(tablename), procfile)) { 54 fclose(procfile);
|
/external/elfutils/libdwfl/ |
linux-pid-attach.c | 50 FILE *procfile; local 54 procfile = fopen (buffer, "r"); 55 if (procfile == NULL) 59 while (fgets (buffer, sizeof (buffer), procfile) != NULL) 66 fclose (procfile); 298 FILE *procfile; local 304 procfile = fopen (buffer, "r"); 305 if (procfile == NULL) 319 while (getline (&line, &linelen, procfile) >= 0) 333 fclose (procfile); [all...] |
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
grep.h | 141 int procfile(const char *fn);
|
grep.c | 689 exit(!procfile("-")); 697 c+= procfile(*aargv);
|
util.c | 110 * the -R option. Each appropriate file is passed to procfile(). 174 c += procfile(p->fts_path); 188 procfile(const char *fn) function
|
/system/core/init/ |
bootchart.cpp | 106 static void do_log_file(FILE* log, const char* procfile) { 110 if (android::base::ReadFileToString(procfile, &content)) {
|
/external/iptables/libxtables/ |
xtables.c | 306 int procfile; local 310 procfile = open(PROC_SYS_MODPROBE, O_RDONLY); 311 if (procfile < 0) 313 if (fcntl(procfile, F_SETFD, FD_CLOEXEC) == -1) { 321 count = read(procfile, ret, PATH_MAX); 328 close(procfile); 333 close(procfile); [all...] |