HomeSort by relevance Sort by last modified time
    Searched refs:S_ISREG (Results 1 - 25 of 315) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 41 #if !defined(S_ISREG)
42 #error S_ISREG
  /toolchain/binutils/binutils-2.27/libiberty/
unlink-if-ordinary.c 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
  /external/expat/xmlwf/
readfilemap.c 55 #ifndef S_ISREG
62 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
63 #endif /* not S_ISREG */
97 if (!S_ISREG(sb.st_mode)) {
unixfilemap.c 75 if (!S_ISREG(sb.st_mode)) {
  /external/ltp/testcases/kernel/io/disktest/
parse.h 53 #define IS_FILE(x) S_ISREG(x)
  /external/toybox/toys/other/
which.c 34 if (!stat(filename, &st) && S_ISREG(st.st_mode)) {
  /external/libgsm/inc/
toast.h 42 #ifndef S_ISREG
43 #define S_ISREG(x) ((x) & S_IFREG)
44 #endif /* S_ISREG */
  /system/core/adb/sysdeps/
stat_test.cpp 31 ASSERT_FALSE(S_ISREG(st.st_mode));
55 ASSERT_TRUE(S_ISREG(st.st_mode));
  /external/e2fsprogs/lib/e2p/
getflags.c 59 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode))
setflags.c 65 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) {
fgetflags.c 76 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) {
fsetflags.c 82 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) {
  /external/elfutils/libdw/
dwarf_begin.c 78 if (fstat (fd, &st) == 0 && ! S_ISREG (st.st_mode))
  /external/syslinux/com32/include/sys/
stat.h 24 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /frameworks/base/libs/androidfw/
misc.cpp 49 if (S_ISREG(sb.st_mode))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 20 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /system/core/libcutils/
ashmem-host.cpp 79 if (!(buf.st_nlink == 0 && S_ISREG(buf.st_mode))) {
  /art/libartbase/base/
os_linux.cc 71 return S_ISREG(st.st_mode); // TODO: Deal with symlinks?
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 49 def S_ISREG(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 49 def S_ISREG(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
which.py 34 if not S_ISREG(st[ST_MODE]):
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 89 if (!S_ISREG(st.st_mode)) {
fopen.c 81 if (!S_ISREG(st.st_mode)) {
  /external/dtc/
fstree.c 51 if (S_ISREG(st.st_mode)) {
  /external/ltp/lib/
get_path.c 47 if (!access(path, R_OK) && !stat(path, &st) && S_ISREG(st.st_mode))

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>