HomeSort by relevance Sort by last modified time
    Searched refs:st_mode (Results 251 - 275 of 314) sorted by null

<<111213

  /system/vold/
cryptfs.c 210 if (S_ISREG(statbuf.st_mode) && (key_loc[0] == '/')) {
270 if (S_ISREG(statbuf.st_mode) && (statbuf.st_size != 0x4000)) {
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-unix.c 994 S_ISSOCK (sb.st_mode))
    [all...]
dbus-sysdeps-util-unix.c 546 statbuf->mode = sb.st_mode;
  /external/bluetooth/glib/gio/fen/
fen-data.c 453 f->is_dir = S_ISDIR (buf.st_mode) ? TRUE : FALSE;
  /external/bluetooth/glib/gio/xdgmime/
xdgmime.c 524 if (!S_ISREG (statbuf->st_mode))
xdgmimecache.c 696 if (!S_ISREG (statbuf->st_mode))
  /external/chromium/chrome/browser/chromeos/login/
camera.cc 341 if (!S_ISCHR(st.st_mode)) {
  /external/clang/lib/Lex/
PTHLexer.cpp 701 StatBuf.st_mode = Data.mode;
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 502 (S_ISBLK(st.st_mode))) {
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 502 if (access_ret == 0 && (st.st_mode & (S_ISUID | S_ISGID)) == 0)
  /external/jhead/
main.c 144 chmod(filename, buf.st_mode);
  /external/v8/src/
d8-posix.cc 572 if ((stat_buf.st_mode & S_IFDIR) != 0) return true;
  /frameworks/base/libs/utils/
Asset.cpp 153 if (!S_ISREG(st.st_mode)) {
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 394 if (S_ISDIR(Libcore.os.fstat(fd).st_mode)) {
  /system/media/wilhelm/tests/examples/
slesTestDecodeAac.cpp 366 if (!S_ISREG(statbuf.st_mode)) {
  /external/bluetooth/glib/gio/
gunixmounts.c     [all...]
  /external/dnsmasq/src/
cache.c 924 if (stat(ah->fname, &buf) != -1 && S_ISDIR(buf.st_mode))
991 if ((ah1->flags & AH_DIR) && stat(ah1->fname, &buf) != -1 && !S_ISREG(buf.st_mode))
    [all...]
  /external/ppp/pppd/
main.c     [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 749 if (!S_ISREG (input->st.st_mode))
815 input->st.st_mode);
    [all...]
  /external/qemu/block/
vvfat.c 742 direntry->attributes=(S_ISDIR(st.st_mode)?0x10:0x20);
761 direntry->size=cpu_to_le32(S_ISDIR(st.st_mode)?0:st.st_size);
764 if(!is_dot && !is_dotdot && (S_ISDIR(st.st_mode) || st.st_size)) {
774 if (S_ISDIR(st.st_mode)) {
784 (st.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) == 0;
    [all...]
  /external/pcre/
pcregrep.c 345 return ((statbuf.st_mode & S_IFMT) == S_IFDIR)? '/' : 0;
382 return (statbuf.st_mode & S_IFMT) == S_IFREG;
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 418 if ((s.st_mode & S_IFMT) == S_IFLNK) {
733 LOGV("st_mode = %u", sb.st_mode);
    [all...]
  /ndk/sources/host-tools/make-3.81/
read.c     [all...]
  /dalvik/vm/analysis/
DexPrepare.cpp 88 if (!S_ISDIR(sb.st_mode)) {
    [all...]
  /external/ipsec-tools/src/racoon/
eaytest.c 531 if (!(sb.st_mode & S_IFDIR)) {

Completed in 2239 milliseconds

<<111213