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

1 2 3 4 5 6 7 8 9

  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 41 #if !defined(S_ISREG)
42 #error S_ISREG
  /external/expat/xmlwf/
readfilemap.c 58 #ifndef S_ISREG
65 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
66 #endif /* not S_ISREG */
100 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)) {
lsattr.c 85 if(!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) {
98 if (!stat(path, &sb) && !S_ISREG(sb.st_mode) && !S_ISDIR(sb.st_mode)) {
195 if (!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) {
265 || (!S_ISREG(root->st.st_mode) && !S_ISLNK(root->st.st_mode)
  /external/libgsm/inc/
toast.h 42 #ifndef S_ISREG
43 #define S_ISREG(x) ((x) & S_IFREG)
44 #endif /* S_ISREG */
  /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))
  /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))
  /external/ltp/testcases/kernel/syscalls/open/
open01.c 75 if (S_ISREG(buf.st_mode))
  /external/python/cpython2/Lib/
stat.py 49 def S_ISREG(mode):
  /external/python/cpython2/Tools/scripts/
which.py 34 if not S_ISREG(st[ST_MODE]):
  /external/python/cpython3/Tools/scripts/
which.py 34 if not S_ISREG(st[ST_MODE]):
  /external/toybox/toys/posix/
cpio.c 152 } else if (S_ISREG(mode)) {
191 if (!S_ISREG(mode) && !S_ISLNK(mode) && !geteuid()
233 if (lstat(name, &st) || (S_ISREG(st.st_mode)
240 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) st.st_size = 0;
  /external/u-boot/scripts/dtc/
fstree.c 51 if (S_ISREG(st.st_mode)) {

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 9