Searched
full:st_mode (Results
351 -
375 of
821) sorted by null
<<11121314151617181920>>
/frameworks/rs/cpu_ref/linkloader/ |
main.cpp | 220 if (!S_ISREG(sb.st_mode)) {
|
/hardware/intel/common/libva/va/android/ |
va_android.cpp | 58 if (!S_ISCHR (st.st_mode))
|
/hardware/intel/common/libva/va/wayland/ |
va_wayland_drm.c | 68 if (!S_ISCHR(st.st_mode)) {
|
/libcore/luni/src/main/native/ |
canonicalize_path.cpp | 92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode)) {
|
/ndk/sources/host-tools/make-3.81/w32/compat/ |
dirent.c | 44 if ((sb.st_mode & S_IFMT) != S_IFDIR) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shutil.py | 79 if stat.S_ISFIFO(st.st_mode): 90 mode = stat.S_IMODE(st.st_mode) 96 mode = stat.S_IMODE(st.st_mode) 243 mode = os.lstat(fullname).st_mode
|
uu.py | 56 mode = os.stat(in_file).st_mode
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shutil.py | 79 if stat.S_ISFIFO(st.st_mode): 90 mode = stat.S_IMODE(st.st_mode) 96 mode = stat.S_IMODE(st.st_mode) 243 mode = os.lstat(fullname).st_mode
|
uu.py | 56 mode = os.stat(in_file).st_mode
|
/system/extras/tests/directiotest/ |
directiotest.c | 196 } else if (!S_ISBLK(stat.st_mode)) {
|
/system/vold/ |
Process.cpp | 41 if ((s.st_mode & S_IFMT) != S_IFLNK)
|
fstrim.c | 92 if (!S_ISDIR(sb.st_mode)) {
|
/external/yaffs2/yaffs2/direct/ |
dtest.c | 504 printf("%s length %d mode %X ",de->d_name,(int)s.st_size,s.st_mode); 505 switch(s.st_mode & S_IFMT) 551 printf("%s length %d mode %X ",str,(int)s.st_size,s.st_mode); 552 switch(s.st_mode & S_IFMT) 567 if((s.st_mode & S_IFMT) == S_IFDIR && recursive) 800 temp_mode = ystat.st_mode; 913 switch(s.st_mode & S_IFMT){ [all...] |
/frameworks/base/libs/androidfw/ |
BackupHelpers.cpp | 307 err = write_update_file(dataStream, fd, st.st_mode, key, realFilename); 362 r.s.mode = st.st_mode; 535 const int isdir = S_ISDIR(s.st_mode); 567 snprintf(buf + 100, 8, "%06o ", s.st_mode & ~S_IFMT); 588 } else if (S_ISREG(s.st_mode)) { 591 ALOGW("Error: unknown file mode 0%o [%s]", s.st_mode, filepath.string()); 809 r.s.mode = st.st_mode; [all...] |
/external/ppp/pppd/ |
tty.c | 315 if (!S_ISCHR(statbuf.st_mode)) { 488 if (fstat(0, &statbuf) >= 0 && S_ISCHR(statbuf.st_mode) 504 && S_ISCHR(statbuf.st_mode) && statbuf.st_rdev == devstat.st_rdev) 596 || fchmod(ttyfd, statbuf.st_mode & ~(S_IWGRP | S_IWOTH)) < 0) { 599 tty_mode = statbuf.st_mode; [all...] |
/bootable/recovery/mtdutils/ |
mtdutils.c | 223 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH; 224 if (new_mode != st.st_mode) {
|
/external/chromium_org/components/storage_monitor/ |
storage_monitor_linux.cc | 137 if (S_ISCHR(device_stat.st_mode)) 139 else if (S_ISBLK(device_stat.st_mode))
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/ |
http_fs_node.cc | 230 stat_.st_mode = mode; 280 stat_.st_mode |= S_IFREG;
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_wrap_glibc.cc | 35 nacl_buf->nacl_abi_st_mode = buf->st_mode; 52 buf->st_mode = nacl_buf->nacl_abi_st_mode;
|
/external/chromium_org/sandbox/linux/suid/ |
sandbox.c | 90 if (!stat(SAFE_DIR, &sdir_stat) && S_ISDIR(sdir_stat.st_mode)) { 92 } else if (!stat(SAFE_DIR2, &sdir_stat) && S_ISDIR(sdir_stat.st_mode)) {
|
/external/chromium_org/third_party/mesa/src/src/gbm/main/ |
gbm.c | 112 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) { 148 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) {
|
/external/fio/ |
blktrace.c | 135 if (S_ISDIR(st.st_mode)) { 143 if (!S_ISBLK(st.st_mode))
|
/external/iputils/ |
tftpd.c | 311 if ((stbuf.st_mode&(S_IREAD >> 6)) == 0) { 316 if ((stbuf.st_mode&(S_IWRITE >> 6)) == 0) {
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
perf.c | 333 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
|
/external/mesa3d/src/gbm/main/ |
gbm.c | 112 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) { 148 if (fd < 0 || fstat(fd, &buf) < 0 || !S_ISCHR(buf.st_mode)) {
|
Completed in 2163 milliseconds
<<11121314151617181920>>