/external/strace/tests/ |
sendfile64.c | 67 assert(S_ISREG(stb.st_mode) && blen > 0);
|
xstatx.c | 142 if (S_ISREG(mode))
|
/external/toybox/toys/pending/ |
test.c | 72 else if (id == 4) toys.exitval = !S_ISREG(st.st_mode); // f
|
file.c | 206 if (S_ISREG(sb.st_mode)) {
|
tar.c | 207 } else if (S_ISREG(st->st_mode)) { 323 if (!S_ISREG(file_hdr->mode)) return; //only regular files are supported. 387 if (S_ISREG(file_hdr->mode) && file_hdr->link_target) {
|
/frameworks/av/media/libmedia/ |
MediaScanner.cpp | 196 if (S_ISREG(statbuf.st_mode)) {
|
/frameworks/base/cmds/idmap/ |
scan.cpp | 195 if (!S_ISREG(st.st_mode)) {
|
/system/extras/simpleperf/ |
utils.cpp | 146 if (S_ISREG(st.st_mode)) {
|
/toolchain/binutils/binutils-2.25/binutils/ |
rename.c | 165 && S_ISREG (s.st_mode)
|
/external/autotest/client/site_tests/platform_EncryptedStateful/ |
platform_EncryptedStateful.py | 134 chk.check(stat.S_ISREG(info.st_mode), 144 chk.check(stat.S_ISREG(info.st_mode),
|
/external/toybox/toys/lsb/ |
mount.c | 165 && ((S_ISREG(stdev.st_mode) && S_ISREG(stdir.st_mode))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 280 if S_ISREG(mode):
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 280 if S_ISREG(mode):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 280 if S_ISREG(mode):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 280 if S_ISREG(mode):
|
/device/google/marlin/dataservices/datatop/src/ |
datatop_gen_poll.c | 250 S_ISREG(s.st_mode)) {
|
/external/avahi/avahi-daemon/ |
dbus-util.c | 226 if (!(S_ISREG(st.st_mode))) {
|
/external/dbus/dbus/ |
dbus-file-unix.c | 108 if (sb.st_size > 0 && S_ISREG (sb.st_mode))
|
/external/libselinux/src/ |
label_android_property.c | 168 if (!S_ISREG(sb.st_mode))
|
/frameworks/base/tools/aapt2/util/ |
Files.cpp | 45 if (S_ISREG(sb.st_mode)) {
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
PathV3.inc | 135 else if (S_ISREG(path_stat.st_mode))
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/ |
stat.h | 159 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
/system/core/libcutils/ |
fs.c | 55 int type_ok = prepare_as_dir ? S_ISDIR(sb.st_mode) : S_ISREG(sb.st_mode);
|
/external/curl/lib/ |
curl_setup.h | 668 /* Define S_ISREG if not defined by system headers, f.e. MSVC */ 669 #if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG) 670 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
/external/llvm/lib/Support/Unix/ |
Path.inc | 266 if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode)) 321 if (!S_ISREG(buf.st_mode)) 363 else if (S_ISREG(Status.st_mode))
|