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

<<11121314151617181920>>

  /external/syslinux/com32/lib/sys/
fstat.c 34 #include <sys/stat.h>
38 int fstat(int fd, struct stat *buf)
  /external/toybox/toys/other/
which.c 32 struct stat st;
34 if (!stat(filename, &st) && S_ISREG(st.st_mode)) {
  /frameworks/minikin/tests/util/
FileUtils.cpp 20 #include <sys/stat.h>
28 struct stat st;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
fscontext.py 19 import stat
80 values in the stat module, e.g. S_IFBLK, but
89 stat.S_IFBLK: "-b",
90 stat.S_IFCHR: "-c",
91 stat.S_IFDIR: "-d",
92 stat.S_IFIFO: "-p",
93 stat.S_IFREG: "--",
94 stat.S_IFLNK: "-l",
95 stat.S_IFSOCK: "-s"}
125 """The file type (e.g. stat.S_IFBLK) for this genfscon statement.""
    [all...]
  /system/update_engine/payload_generator/
filesystem_interface.h 26 #include <sys/stat.h>
51 // The stat struct for the file. This is invalid (inode 0) for some
53 struct stat file_stat;
  /bionic/tests/
ftw_test.cpp 22 #include <sys/stat.h>
52 void sanity_check_ftw(const char* fpath, const struct stat* sb, int tflag) {
56 // Was it a case where the struct stat we're given is meaningless?
58 // If so, double-check that we really can't stat.
59 struct stat sb;
60 EXPECT_EQ(-1, stat(fpath, &sb));
64 // Otherwise check that the struct stat matches the type flag.
78 void sanity_check_nftw(const char* fpath, const struct stat* sb, int tflag, FTW* ftwbuf) {
83 int check_ftw(const char* fpath, const struct stat* sb, int tflag) {
89 sanity_check_ftw(fpath, reinterpret_cast<const struct stat*>(sb), tflag)
    [all...]
  /frameworks/base/cmds/incidentd/src/
report_directory.cpp 26 #include <sys/stat.h>
39 struct stat st;
55 if (stat(dir, &st) == 0) {
89 if (stat(directory, &st) != 0) {
90 ALOGE("No incident reports today. Can't stat: %s", directory);
113 stat_mtime_cmp(const pair<String8,struct stat>& a, const pair<String8,struct stat>& b)
123 struct stat st;
125 vector<pair<String8,struct stat>> files;
143 if (stat(filename.string(), &st) != 0)
    [all...]
  /external/google-tv-pairing-protocol/cpp/
depcomp 116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat=$
    [all...]
  /external/libexif/
depcomp 116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat=$
    [all...]
  /external/libmtp/
depcomp 116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat=$
    [all...]
  /external/libnetfilter_conntrack/
depcomp 116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat=$
    [all...]
  /external/libnfnetlink/
depcomp 116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat=$
    [all...]
  /external/libusb-compat/
depcomp 109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
232 stat=$
    [all...]
  /external/stressapptest/
depcomp 109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
232 stat=$
    [all...]
  /bionic/libc/bionic/
chown.cpp 30 #include <sys/stat.h>
lchown.cpp 30 #include <sys/stat.h>
mkfifo.cpp 29 #include <sys/stat.h>
mknod.cpp 30 #include <sys/stat.h>
readlink.cpp 32 #include <sys/stat.h>
  /bionic/libc/include/android/
legacy_sys_stat_inlines.h 33 #include <sys/stat.h>
  /build/make/tools/libhost/include/host/
CopyFile.h 5 #include <sys/stat.h>
  /cts/tests/tests/permission/src/android/permission/cts/
NoReadLogsPermissionTest.java 96 StructStat stat = Os.stat(log); local
97 assertEquals("not owned by uid=0", 0, stat.st_uid);
98 assertEquals("not owned by gid=logs", "log", FileUtils.getGroupName(stat.st_gid));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
dep_util.py 30 return os.stat(source).st_mtime > os.stat(target).st_mtime
58 default ("error") is to blow up with an OSError from inside 'stat()';
74 target_mtime = os.stat(target).st_mtime
78 if missing == 'error': # blow up when we stat() the file
85 if os.stat(source).st_mtime > target_mtime:
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammar.g3 49 // START:stat
50 prog: ( stat )*
53 stat: expr NEWLINE -> expr
70 // END:stat
ProfileGrammar.g3 49 // START:stat
50 prog: ( stat )*
53 stat: expr NEWLINE -> expr
70 // END:stat

Completed in 1148 milliseconds

<<11121314151617181920>>