Home
last modified time | relevance | path

Searched refs:S_ISREG (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/zstd/contrib/pzstd/utils/
DFileSystem.h49 #if defined(S_ISREG) in is_regular_file()
50 return S_ISREG(status.st_mode); in is_regular_file()
51 #elif !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG) in is_regular_file()
/external/expat/expat/xmlwf/
Dreadfilemap.c63 #ifndef S_ISREG
70 # define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) macro
104 if (! S_ISREG(sb.st_mode)) { in filemap()
Dunixfilemap.c78 if (! S_ISREG(sb.st_mode)) { in filemap()
/external/libgsm/inc/
Dtoast.h46 #ifndef S_ISREG
47 #define S_ISREG(x) ((x) & S_IFREG) macro
/external/rust/crates/grpcio-sys/grpc/third_party/xxhash/cli/
Dxsum_config.h93 #if !defined(S_ISREG)
94 # define S_ISREG(x) (((x) & S_IFMT) == S_IFREG) macro
/external/toybox/toys/other/
Dlsattr.c130 if(!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) { in ext2_getflag()
156 if (!stat(path, &sb) && !S_ISREG(sb.st_mode) && !S_ISDIR(sb.st_mode)) { in print_file_attr()
247 if (!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode)) { in ext2_setflag()
301 || (!S_ISREG(root->st.st_mode) && !S_ISLNK(root->st.st_mode) in update_attr()
Dwhich.c34 if (!stat(filename, &st) && S_ISREG(st.st_mode)) { in which_in_path()
/external/e2fsprogs/lib/e2p/
Dfsetflags.c87 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) { in fsetflags()
98 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) { in fsetflags()
Dfgetflags.c86 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) { in fgetflags()
97 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) { in fgetflags()
Dsetflags.c65 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) { in setflags()
Dgetflags.c60 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode)) in getflags()
/external/bcc/libbpf-tools/
Dfiletop.bpf.c44 if (regular_file_only && !S_ISREG(mode)) in probe_entry()
62 if (S_ISREG(mode)) { in probe_entry()
Dstat.h20 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) macro
/external/libcap-ng/libcap-ng-0.7/utils/
Dfilecap.c49 if (S_ISREG(sb->st_mode) == 0) in check_file()
119 if (S_ISREG(sbuf.st_mode) && path == NULL && in main()
/external/ImageMagick/MagickWand/
Dstudio.h194 # if !defined(S_ISREG)
195 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
/external/toybox/toys/posix/
Dcpio.c198 } else if (S_ISREG(mode)) { in cpio_main()
268 if (lstat(name, &st) || (S_ISREG(st.st_mode) in cpio_main()
281 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) st.st_size = 0; in cpio_main()
/external/ImageMagick/MagickCore/
Dstudio.h204 # if !defined(S_ISREG)
205 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
/external/mtools/
Dsysincludes.h621 #if !defined(S_ISREG) && defined (_S_IFMT) && defined (_S_IFREG)
622 #define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG)) macro
/external/elfutils/libdw/
Ddwarf_begin.c78 if (fstat (fd, &st) == 0 && ! S_ISREG (st.st_mode)) in dwarf_begin()
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_diskstat.c280 if (!S_ISREG(stat_buf.st_mode)) in hud_get_num_disks()
306 if (!S_ISREG(stat_buf.st_mode)) in hud_get_num_disks()
/external/ltp/testcases/kernel/syscalls/open/
Dopen01.c62 if (S_ISREG(buf.st_mode)) in verify_open()
/external/ltp/lib/
Dget_path.c47 if (!access(path, R_OK) && !stat(path, &st) && S_ISREG(st.st_mode)) in file_exist()
/external/python/cpython2/Lib/
Dstat.py49 def S_ISREG(mode): function
/external/python/cpython3/Tools/scripts/
Dwhich.py34 if not S_ISREG(st[ST_MODE]):
/external/python/cpython2/Tools/scripts/
Dwhich.py34 if not S_ISREG(st[ST_MODE]):

12345678910