Searched refs:procfile (Results 1 - 4 of 4) sorted by relevance

/external/iptables/iptables/
H A Dip6tables-save.c40 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);
H A Diptables-save.c38 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/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c286 char procfile[1024]; local
301 SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/exe", getpid());
303 SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/file", getpid());
307 linksize = readlink(procfile, linkfile, sizeof(linkfile)-1);
/external/iptables/libxtables/
H A Dxtables.c306 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);

Completed in 471 milliseconds