HomeSort by relevance Sort by last modified time
    Searched refs:S_ISDIR (Results 101 - 125 of 264) sorted by null

1 2 3 45 6 7 8 91011

  /ndk/sources/android/crazy_linker/src/
crazy_linker_system.cpp 77 return S_ISREG(st.st_mode) || S_ISDIR(st.st_mode);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 44 return stat.S_ISDIR(st.st_mode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 44 return stat.S_ISDIR(st.st_mode)
  /external/chromium_org/third_party/webrtc/test/testsupport/
fileutils.cc 31 #ifndef S_ISDIR // Not defined in stat.h on Windows.
32 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
198 if (!S_ISDIR(path_info.st_mode)) {
  /system/core/toolbox/upstream-netbsd/bin/rm/
rm.c 315 if (S_ISDIR(sb.st_mode) && !dflag) {
325 else if (S_ISDIR(sb.st_mode))
327 if (S_ISDIR(sb.st_mode))
  /bionic/libc/bionic/
dirent.cpp 72 if (!S_ISDIR(sb.st_mode)) {
  /external/chromium_org/base/
os_compat_android.cc 145 if (!S_ISDIR(st.st_mode)) { // Not a directory
file_util_posix.cc 211 if (!S_ISDIR(file_info.st_mode))
300 S_ISDIR(to_path_stat.st_mode)) {
309 DCHECK(recursive || S_ISDIR(from_stat.st_mode));
323 if (S_ISDIR(from_stat.st_mode)) {
368 return S_ISDIR(file_info.st_mode);
606 S_ISDIR(file_info.st_mode))
844 if (S_ISDIR(to_file_info.st_mode) != S_ISDIR(from_file_info.st_mode))
  /external/chromium_org/ipc/
file_descriptor_set_posix.cc 111 if (fstat(i->fd, &st) == 0 && S_ISDIR(st.st_mode))
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 28 #define S_ISDIR(s) ((_S_IFDIR & s) !=0)
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audiodev.c 65 if ( ((stat("/dev/sound", &sb) == 0) && S_ISDIR(sb.st_mode)) &&
  /ndk/sources/host-tools/make-3.81/
make.h 178 # ifdef S_ISDIR
179 # undef S_ISDIR
186 #ifndef S_ISDIR
187 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  /system/core/fastbootd/
secure.c 70 if (S_ISDIR(st.st_mode)) {
  /system/core/toolbox/
wipe.c 125 if(S_ISDIR(statBuffer.st_mode)) {
  /system/vold/
fstrim.c 92 if (!S_ISDIR(sb.st_mode)) {
  /external/bison/lib/
sys_stat.in.h 88 # undef S_ISDIR
115 #ifndef S_ISDIR
117 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
119 # define S_ISDIR(m) 0
  /external/chromium_org/third_party/libxslt/libxslt/
security.c 296 #ifdef S_ISDIR
297 if (S_ISDIR(stat_buffer.st_mode)) {
  /external/e2fsprogs/misc/
chattr.c 228 if (!S_ISDIR(st.st_mode))
250 if (S_ISDIR(st.st_mode) && recursive)
  /system/core/libcutils/
fs.c 53 if (!S_ISDIR(sb.st_mode)) {
206 if (!S_ISDIR(sb.st_mode)) {
  /system/core/toolbox/upstream-netbsd/bin/mv/
mv.c 116 if (stat(argv[argc - 1], &sb) || !S_ISDIR(sb.st_mode)) {
236 if ((S_ISDIR(sb.st_mode)) ? rmdir(to) : unlink(to)) {
  /build/tools/atree/
files.cpp 353 rec->sourceIsDir = S_ISDIR(st.st_mode);
374 rec->outIsDir = S_ISDIR(st.st_mode);
456 bool is_directory = S_ISDIR(stat_buf.st_mode);
  /external/chromium_org/third_party/libjingle/source/talk/base/
unixfilesystem.cc 118 return S_ISDIR(st.st_mode) != 0;
280 return S_ISDIR(st.st_mode);
335 return res == 0 && !S_ISDIR(st.st_mode);
  /external/chromium_org/third_party/webrtc/base/
unixfilesystem.cc 101 return S_ISDIR(st.st_mode) != 0;
263 return S_ISDIR(st.st_mode);
318 return res == 0 && !S_ISDIR(st.st_mode);
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 18 #ifndef S_ISDIR // Not defined in stat.h on Windows.
19 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
134 S_ISDIR(dir_info.st_mode))) {
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 149 if (!S_ISDIR(sb.st_mode)) {

Completed in 590 milliseconds

1 2 3 45 6 7 8 91011