HomeSort by relevance Sort by last modified time
    Searched full:st_mode (Results 101 - 125 of 726) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/base/
platform_file_posix.cc 190 info->is_directory = S_ISDIR(file_info.st_mode);
191 info->is_symbolic_link = S_ISLNK(file_info.st_mode);
  /external/oprofile/libutil++/
file_manip.cpp 47 mode_t mode = buf.st_mode & ~S_IFMT;
82 return !stat(dirname.c_str(), &st) && S_ISDIR(st.st_mode);
  /ndk/sources/host-tools/sed-4.2.1/lib/
lstat.c 59 if (lstat_result != 0 || !S_ISLNK (sbuf->st_mode))
74 if (S_ISDIR (sbuf->st_mode))
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/sys/
stat.h 51 unsigned int st_mode; member in struct:stat
82 unsigned int st_mode;
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/sys/
stat.h 51 unsigned int st_mode; member in struct:stat
82 unsigned int st_mode;
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/sys/
stat.h 51 unsigned int st_mode; member in struct:stat
82 unsigned int st_mode;
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/sys/
stat.h 51 unsigned int st_mode; member in struct:stat
82 unsigned int st_mode;
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
stat.h 51 unsigned int st_mode; member in struct:stat
82 unsigned int st_mode;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_scripts.py 8 from stat import ST_MODE
122 oldmode = os.stat(file)[ST_MODE] & 07777
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 32 return stat.S_ISREG(st.st_mode)
44 return stat.S_ISDIR(st.st_mode)
stat.py 8 ST_MODE = 0
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_scripts.py 8 from stat import ST_MODE
122 oldmode = os.stat(file)[ST_MODE] & 07777
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 32 return stat.S_ISREG(st.st_mode)
44 return stat.S_ISDIR(st.st_mode)
stat.py 8 ST_MODE = 0
  /system/core/toolbox/
ls.c 144 char filetype = mode2kind(s->st_mode);
150 printf("l%c ", mode2kind(link_dest.st_mode));
183 mode2str(s->st_mode, mode);
198 switch(s->st_mode & S_IFMT) {
263 mode2str(s->st_mode, mode);
267 switch(s->st_mode & S_IFMT) {
397 if (S_ISDIR(s.st_mode)) {
432 if ((flags & LIST_DIRECTORIES) == 0 && S_ISDIR(s.st_mode)) {
umount.c 20 if (S_ISBLK(st.st_mode) && (major(st.st_rdev) == LOOP_MAJOR)) {
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
remove.c 51 if (S_ISDIR(sb.st_mode))
  /external/chromium/chrome/browser/resources/file_manager/bin/
squashdir.py 39 if not stat.S_ISDIR(statinfo.st_mode):
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 130 file_stat.st_mode = 0;
132 (_S_IFDIR & file_stat.st_mode) != 0;
135 file_stat.st_mode = 0;
137 S_ISDIR(file_stat.st_mode);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
v4llookup.cc 31 if (lstat(device_path.c_str(), &s) != 0 || !S_ISCHR(s.st_mode)) return false;
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
v4llookup.cc 32 if (lstat(device_path.c_str(), &s) != 0 || !S_ISCHR(s.st_mode)) return false;
  /external/chromium_org/tools/gyp/test/mac/
gyptest-bundle-resources.py 26 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit:
  /build/tools/atree/
fs.cpp 26 return err != 0 || S_ISDIR(st.st_mode);
72 bool is_directory = S_ISDIR(stat_buf.st_mode);
130 else if (!S_ISDIR(st.st_mode)) {
  /external/e2fsprogs/lib/blkid/
devno.c 118 if (S_ISBLK(st.st_mode) && st.st_rdev == devno) {
125 if (list && S_ISDIR(st.st_mode) && !lstat(path, &st) &&
126 S_ISDIR(st.st_mode))
getsize.c 145 if ((fstat(fd, &st) >= 0) && (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode)))
161 if (S_ISREG(st.st_mode))

Completed in 902 milliseconds

1 2 3 45 6 7 8 91011>>