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

1 2 3 4 5 6 7 8

  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
universal_unistd.h 29 #define W_OK 2
  /bionic/libc/bionic/
faccessat.cpp 38 // bitwise OR of one or more of R_OK, W_OK, and X_OK."
39 if ((mode != F_OK) && ((mode & ~(R_OK | W_OK | X_OK)) != 0) &&
40 ((mode & (R_OK | W_OK | X_OK)) == 0)) {
  /external/ltp/testcases/kernel/syscalls/access/
access01.c 26 * Basic test for access(2) using F_OK, R_OK, W_OK and X_OK
58 {FNAME_RWX, W_OK, "W_OK", 0, 3},
61 {FNAME_RWX, R_OK|W_OK, "R_OK|W_OK", 0, 3},
63 {FNAME_RWX, W_OK|X_OK, "W_OK|X_OK", 0, 3},
64 {FNAME_RWX, R_OK|W_OK|X_OK, "R_OK|W_OK|X_OK", 0, 3},
67 {FNAME_W, W_OK, "W_OK", 0, 3}
    [all...]
access02.c 23 * permissions on a file if the mode argument passed was F_OK/R_OK/W_OK/X_OK.
63 {FNAME_W, W_OK, "W_OK", FNAME_W},
67 {SNAME_W, W_OK, "W_OK", FNAME_W},
118 case W_OK:
access04.c 64 {"", W_OK, ENOENT},
68 {MNT_POINT, W_OK, EROFS}
access03.c 44 {(void *)-1, W_OK, "W_OK"},
  /external/strace/xlat/
access_flags.h 17 #if defined(W_OK) || (defined(HAVE_DECL_W_OK) && HAVE_DECL_W_OK)
18 XLAT(W_OK),
  /external/googletest/googletest/include/gtest/internal/custom/
gtest.h 50 if (access("/data/local/tmp", R_OK | W_OK | X_OK) == 0) return "/data/local/tmp/";
  /external/strace/tests/
access.c 18 rc = syscall(__NR_access, sample, R_OK|W_OK|X_OK);
19 printf("access(\"%s\", R_OK|W_OK|X_OK) = %ld %s (%m)\n",
  /external/strace/tests-m32/
access.c 18 rc = syscall(__NR_access, sample, R_OK|W_OK|X_OK);
19 printf("access(\"%s\", R_OK|W_OK|X_OK) = %ld %s (%m)\n",
  /external/strace/tests-mx32/
access.c 18 rc = syscall(__NR_access, sample, R_OK|W_OK|X_OK);
19 printf("access(\"%s\", R_OK|W_OK|X_OK) = %ld %s (%m)\n",
  /external/tensorflow/tensorflow/core/platform/posix/
tracing.cc 35 if (access(dir, R_OK | W_OK | X_OK) == 0) return dir;
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
access.c 24 #define GOOD_MODE (F_OK | X_OK | W_OK | R_OK)
32 permissions to be checked (R_OK, W_OK, X_OK) or the existence test (F_OK).
93 if(Mode & W_OK) {
  /external/oj-libjdwp/src/solaris/javavm/export/
jvm_md.h 36 #include <unistd.h> /* For F_OK, R_OK, W_OK */
56 #define JVM_W_OK W_OK
  /libcore/ojluni/src/main/native/
jvm_md.h 36 #include <unistd.h> /* For F_OK, R_OK, W_OK */
56 #define JVM_W_OK W_OK
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOs.py 65 W_OK = os.W_OK
  /external/autotest/client/profilers/powertop/src/
wireless.c 63 if (access(rfkill_path, W_OK))
83 if (access(rfkill_path, W_OK))
145 if (access(powersave_path, W_OK))
177 if (!access(pathname, W_OK))
189 if (!access(pathname, W_OK))
  /dalvik/libdex/
CmdUtils.cpp 140 if (access("/tmp", W_OK) == 0) {
142 } else if (access("/sdcard", W_OK) == 0) {
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 102 static final int W_OK = OsConstants.W_OK;
  /toolchain/binutils/binutils-2.27/libiberty/
make-temp-file.c 46 #define W_OK 2
79 && access (dir, R_OK | W_OK | X_OK) == 0)
  /device/google/marlin/dataservices/datatop/src/
datatop_fileops.c 108 if (!access(fw, W_OK)) {
  /external/avb/test/
avbtool_signing_helper_test.py 58 if os.path.isfile(test_file_name) and not os.access(test_file_name, os.W_OK):
avbtool_signing_helper_with_files_test.py 55 if os.path.isfile(test_file_name) and not os.access(test_file_name, os.W_OK):
  /external/toybox/toys/posix/
rm.c 39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
  /system/extras/tests/storage/
opentest.c 59 if (access(dir, R_OK | W_OK)) {

Completed in 280 milliseconds

1 2 3 4 5 6 7 8