HomeSort by relevance Sort by last modified time
    Searched full:stat (Results 251 - 275 of 1263) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/os/
FileUtils.java 52 * File status information. This class maps directly to the POSIX stat structure.
72 * Get the status for the given path. This is equivalent to the POSIX stat(2) system call.
73 * @param path The path of the file to be stat'd.
77 * permission to stat the file, then this method will return false.
  /hardware/ti/omap3/dspbridge/libbridge/inc/
qosti_dspdecl.h 60 ALLHEAPS = 0x100, /* Get aggregate mem-stat info combining all heaps. */
  /system/core/init/
bootchart.c 34 #include <sys/stat.h>
264 /* read process stat line */
265 snprintf(filename,sizeof(filename),"/proc/%d/stat",pid);
356 do_log_file(log_stat, "/proc/stat");
  /system/extras/tests/cpueater/
cpueater.c 25 #include <sys/stat.h>
  /system/vold/
Xwarp.cpp 24 #include <sys/stat.h>
  /bionic/libc/stdio/
mktemp.c 32 #include <sys/stat.h>
88 struct stat sbuf;
133 rval = stat(path, &sbuf);
  /bootable/recovery/applypatch/
freecache.c 6 #include <sys/stat.h>
106 struct stat st;
107 if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
  /bootable/recovery/tools/ota/
check-lost+found.c 26 #include <sys/stat.h>
60 struct stat st;
61 if (stat(kMarkerFile, &st)) {
  /external/e2fsprogs/lib/blkid/
devno.c 24 #include <sys/stat.h>
105 struct stat st;
120 if (stat(path, &st) < 0)
getsize.c 45 #include <sys/stat.h>
92 struct stat st;
158 struct stat st;
save.c 19 #include <sys/stat.h>
64 struct stat st;
78 if (((ret = stat(filename, &st)) < 0 && errno != ENOENT) ||
  /external/e2fsprogs/lib/ext2fs/
finddev.c 24 #include <sys/stat.h>
84 struct stat st;
98 if (stat(path, &st) < 0)
  /external/ipsec-tools/src/racoon/
misc.c 38 #include <sys/stat.h>
148 struct stat st;
150 if (stat(path, &st) != 0)
plainrsa-gen.c 43 #include <sys/stat.h>
161 struct stat st;
187 if (stat(fname, &st) >= 0) {
  /external/netperf/
netcpu_procstat.c 6 Implement the /proc/stat specific portions of netperf CPU
47 /* The max. length of one line of /proc/stat cpu output */
49 #define PROC_STAT_FILE_NAME "/proc/stat"
  /external/ppp/pppd/plugins/pppoatm/
pppoatm.c 26 #include <sys/stat.h>
63 * devstat: a stat structure of the device. In this case
72 extern struct stat devstat;
  /external/qemu/slirp/
slirp.h 12 #define STAT(expr) expr
14 #define STAT(expr) do { } while(0)
191 #include <sys/stat.h>
tcp_output.c 261 STAT(tcpstat.tcps_didnuttin++);
337 STAT(tcpstat.tcps_sndprobe++);
339 STAT(tcpstat.tcps_sndrexmitpack++);
340 STAT(tcpstat.tcps_sndrexmitbyte += len);
342 STAT(tcpstat.tcps_sndpack++);
343 STAT(tcpstat.tcps_sndbyte += len);
380 STAT(tcpstat.tcps_sndacks++);
382 STAT(tcpstat.tcps_sndctrl++);
384 STAT(tcpstat.tcps_sndurg++);
386 STAT(tcpstat.tcps_sndwinup++)
    [all...]
  /external/qemu/slirp-android/
tcp_output.c 261 STAT(tcpstat.tcps_didnuttin++);
337 STAT(tcpstat.tcps_sndprobe++);
339 STAT(tcpstat.tcps_sndrexmitpack++);
340 STAT(tcpstat.tcps_sndrexmitbyte += len);
342 STAT(tcpstat.tcps_sndpack++);
343 STAT(tcpstat.tcps_sndbyte += len);
380 STAT(tcpstat.tcps_sndacks++);
382 STAT(tcpstat.tcps_sndctrl++);
384 STAT(tcpstat.tcps_sndurg++);
386 STAT(tcpstat.tcps_sndwinup++)
    [all...]
  /external/skia/src/utils/
SkOSFile.cpp 181 #include <sys/stat.h>
191 struct stat s;
198 if (0 == stat(str.c_str(), &s))
  /system/core/toolbox/
cat.c 36 #include <sys/stat.h>
157 struct stat sbuf;
198 struct stat st;
  /external/openssl/crypto/x509/
by_dir.c 69 # include <stat.h>
71 # include <sys/stat.h>
78 #define stat _stat macro
263 struct stat st;
343 if (stat(b->data,&st) < 0)
  /external/qemu/android/utils/
filelock.c 18 #include <sys/stat.h>
224 struct stat st_temp;
246 D( "can't properly stat our locking temp file '%s'", lock->temp );
254 struct stat st_lock;
288 struct stat st;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/freebsd/
SDL_syscdrom.c 29 #include <sys/stat.h>
63 static int CheckDrive(char *drive, struct stat *stbuf)
69 if ( stat(drive, stbuf) < 0 ) {
97 static void AddDrive(char *drive, struct stat *stbuf)
139 struct stat stbuf;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/openbsd/
SDL_syscdrom.c 30 #include <sys/stat.h>
66 static int CheckDrive(char *drive, struct stat *stbuf)
72 if ( stat(drive, stbuf) < 0 ) {
102 static void AddDrive(char *drive, struct stat *stbuf)
148 struct stat stbuf;

Completed in 115 milliseconds

<<11121314151617181920>>