HomeSort by relevance Sort by last modified time
    Searched defs:F_OK (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/StdLib/Include/
unistd.h 29 #define F_OK 0 /* test for existence of file */
93 permissions to be checked (R_OK, W_OK, X_OK) or the existence test (F_OK).
  /external/curl/src/
tool_dirhie.c 47 # define F_OK 0
142 if(access(dirbuildup, F_OK) == -1) {
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.h 55 # define F_OK 0
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOs.py 66 F_OK = os.F_OK
  /external/protobuf/src/google/protobuf/testing/
file.cc 56 #ifndef F_OK
57 #define F_OK 00 // not defined by MSVC for whatever reason
62 return access(name.c_str(), F_OK) == 0;
  /bionic/libc/include/
unistd.h 51 #define F_OK 0
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
parser.h 26 #define F_OK 0
62 m_dwError = F_OK;
io.h 173 #define F_OK 0 /* Check for file existence */
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 63 #ifndef F_OK
64 #define F_OK 00 // not defined by MSVC for whatever reason
408 if (access(shadowing_disk_file->c_str(), F_OK) >= 0) {
command_line_interface_unittest.cc 83 #ifndef F_OK
84 #define F_OK 00 // not defined by MSVC for whatever reason
321 if (access(possible_paths[i], F_OK) == 0) {
332 if (access(plugin_path.c_str(), F_OK) != 0) {
    [all...]
command_line_interface.cc 95 #ifndef F_OK
96 #define F_OK 00 // not defined by MSVC for whatever reason
164 if (access(path.c_str(), F_OK) == -1) {
227 return access(file_path.c_str(), F_OK) != -1;
931 if (access(input_files_[i].c_str(), F_OK) < 0) {
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 106 static final int F_OK = OsConstants.F_OK;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 94 # define F_OK 0 /* Test for existence. */
unistd.h 285 #define F_OK 0 /* Test for existence. */
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 51 #define F_OK 0
  /external/icu/icu4c/source/tools/tzcode/
private.h 102 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
105 #ifndef F_OK
106 #define F_OK 0
107 #endif /* !defined F_OK */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 74 # define F_OK 0
  /bionic/libc/tzcode/
private.h 140 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
151 #ifndef F_OK
152 #define F_OK 0
153 #endif /* !defined F_OK */
  /external/curl/lib/
config-amigaos.h 118 #ifndef F_OK
119 # define F_OK 0
  /external/zlib/src/contrib/untgz/
untgz.c 26 # ifndef F_OK
27 # define F_OK 0
143 if (access(buffer,F_OK) == 0)
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 427 Os.access(visiblePath.getAbsolutePath(), OsConstants.F_OK);
  /toolchain/binutils/binutils-2.27/zlib/contrib/untgz/
untgz.c 26 # ifndef F_OK
27 # define F_OK 0
143 if (access(buffer,F_OK) == 0)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 323 #ifndef F_OK
324 # define F_OK 0
    [all...]
  /external/python/cpython2/Lib/plat-irix5/
FILE.py 236 F_OK = 0
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 567 Os.access(oldPath.toString(), OsConstants.F_OK);
568 Os.access(newPath.toString(), OsConstants.F_OK);
    [all...]

Completed in 742 milliseconds

1 2 3 4