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

1 2 3

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osunistd.h 12 #define X_OK 1
  /external/chromium_org/tools/telemetry/telemetry/util/
path.py 20 return os.path.isfile(path) and os.access(path, os.X_OK)
find_dependencies_unittest.py 49 self.assertTrue(os.access(gsutil_path, os.X_OK))
support_binaries.py 28 required_mode = os.X_OK
  /external/oprofile/libpopt/
findme.c 39 if (!access(buf, X_OK))
  /external/chromium_org/components/crash/tools/
generate_breakpad_symbols.py 45 if not os.access(dump_syms_bin, os.X_OK):
66 if os.access(new_path, os.X_OK):
124 if (os.access(dep, os.X_OK) and
233 if not os.access(options.binary, os.X_OK):
  /external/deqp/scripts/build/
common.py 50 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pager.c 59 if (!access("/usr/bin/pager", X_OK))
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 113 ret = open_broker.Access(kR_WhiteListed, X_OK);
115 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
139 ret = open_broker.Access(kR_WhiteListedButDenied, X_OK);
141 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | X_OK);
159 ret = open_broker.Access(kW_WhiteListed, X_OK);
161 ret = open_broker.Access(kW_WhiteListed, R_OK | X_OK);
178 ret = open_broker.Access(kRW_WhiteListed, X_OK);
180 ret = open_broker.Access(kRW_WhiteListed, R_OK | X_OK);
197 ret = open_broker.Access(k_NotWhitelisted, X_OK);
199 ret = open_broker.Access(k_NotWhitelisted, R_OK | X_OK);
    [all...]
  /external/chromium_org/tools/win/split_link/
install_split_link.py 16 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
  /external/lldb/utils/test/
llvm-mc-shell.py 14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
run-until-faulted.py 14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
disasm.py 15 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSUserFile.py 34 if os.path.isfile(item) and os.access(item, os.X_OK):
  /bionic/libc/include/
unistd.h 102 #define X_OK 1 /* Execute */
  /cts/apps/CtsVerifier/jni/verifier/
com_android_cts_verifier_os_FileUtils.cpp 65 if (access(pathStr, X_OK) == 0) {
  /development/ndk/platforms/android-12/include/
unistd.h 106 #define X_OK 1 /* Execute */
  /development/ndk/platforms/android-3/include/
unistd.h 102 #define X_OK 1 /* Execute */
  /development/ndk/platforms/android-8/include/
unistd.h 106 #define X_OK 1 /* Execute */
  /development/ndk/platforms/android-9/include/
unistd.h 106 #define X_OK 1 /* Execute */
  /development/ndk/platforms/android-L/include/
unistd.h 105 #define X_OK 1 /* Execute */
  /external/chromium_org/content/shell/tools/
breakpad_integration_test.py 48 if not os.access(options.binary, os.X_OK):
  /external/chromium_org/third_party/skia/src/xml/
SkJS.cpp 134 found = (access(full, X_OK) == 0);
  /external/lldb/test/benchmarks/disassembly/
TestDisassembly.py 11 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 260 X_OK = os.X_OK

Completed in 1348 milliseconds

1 2 3