Searched refs:F_GETPATH (Results 1 – 10 of 10) sorted by relevance
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 551 #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/ |
D | Path.inc | 567 #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/ |
D | fcntlmodule.c | 531 #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/ |
D | File.cpp | 334 #ifdef F_GETPATH in GetFileSpec() 337 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1) in GetFileSpec()
|
/external/python/cpython3/Lib/test/ |
D | test_fcntl.py | 188 res = fcntl.fcntl(self.f.fileno(), fcntl.F_GETPATH, bytes(len(expected)))
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Path.inc | 906 #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/ |
D | Path.inc | 940 #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/ |
D | fcntl.rst | 37 On macOS, the fcntl module exposes the ``F_GETPATH`` constant, which obtains
|
/external/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 1893 pub const F_GETPATH: ::c_int = 50; constant
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 2003 Add ``F_GETPATH`` command to :mod:`fcntl`.
|