Home
last modified time | relevance | path

Searched refs:F_GETPATH (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/Support/Unix/
DPath.inc551 #if !defined(F_GETPATH)
572 #if defined(F_GETPATH)
573 // When F_GETPATH is availble, it is the quickest way to get
576 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
629 #if defined(F_GETPATH)
630 // When F_GETPATH is availble, it is the quickest way to get
633 if (::fcntl(FD, F_GETPATH, ResultPath.begin()) == -1)
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc567 #if !defined(F_GETPATH)
588 #if defined(F_GETPATH)
589 // When F_GETPATH is availble, it is the quickest way to get
592 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
645 #if defined(F_GETPATH)
646 // When F_GETPATH is availble, it is the quickest way to get
649 if (::fcntl(FD, F_GETPATH, ResultPath.begin()) == -1)
/external/python/cpython3/Modules/
Dfcntlmodule.c531 #ifdef F_GETPATH in all_ins()
532 if (PyModule_AddIntMacro(m, F_GETPATH)) return -1; in all_ins()
/external/llvm-project/lldb/source/Host/common/
DFile.cpp334 #ifdef F_GETPATH in GetFileSpec()
337 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1) in GetFileSpec()
/external/python/cpython3/Lib/test/
Dtest_fcntl.py188 res = fcntl.fcntl(self.f.fileno(), fcntl.F_GETPATH, bytes(len(expected)))
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DPath.inc906 #if !defined(F_GETPATH)
998 #if defined(F_GETPATH)
999 // When F_GETPATH is availble, it is the quickest way to get
1002 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
/external/llvm-project/llvm/lib/Support/Unix/
DPath.inc940 #if !defined(F_GETPATH)
1032 #if defined(F_GETPATH)
1033 // When F_GETPATH is availble, it is the quickest way to get
1036 if (::fcntl(ResultFD, F_GETPATH, Buffer) != -1)
/external/python/cpython3/Doc/library/
Dfcntl.rst37 On macOS, the fcntl module exposes the ``F_GETPATH`` constant, which obtains
/external/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs1893 pub const F_GETPATH: ::c_int = 50; constant
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst2003 Add ``F_GETPATH`` command to :mod:`fcntl`.