Home
last modified time | relevance | path

Searched refs:getpath (Results 1 – 9 of 9) sorted by relevance

/third_party/rust/crates/rustix/src/fs/
Dgetpath.rs12 pub fn getpath<Fd: AsFd>(fd: Fd) -> io::Result<CString> { in getpath() function
13 backend::fs::syscalls::getpath(fd.as_fd()) in getpath()
Dmod.rs33 mod getpath; module
187 pub use getpath::getpath;
/third_party/python/
DMakefile.pre.in292 Modules/getpath.o \
596 # sys.path fixup -- see Modules/getpath.c.
792 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
798 -o $@ $(srcdir)/Modules/getpath.c
/third_party/python/Misc/NEWS.d/
D3.7.0a2.rst670 Fix memory corruption due to allocator mix in getpath.c between Py_GetPath()
D3.6.4rc1.rst1116 Fix memory corruption due to allocator mix in getpath.c between Py_GetPath()
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch1782 # Create file used for sys.path fixup -- see Modules/getpath.c
2698 diff --git a/Modules/getpath.c b/Modules/getpath.c
2700 --- a/Modules/getpath.c
2701 +++ b/Modules/getpath.c
2745 …DVERSION='"3.9"' -DVPATH='"../Python-3.9.4"' -o Modules/getpath.o ../Python-3.9.4/Modules/getpath.c
9867 +# Also, getpath.c uses GetModuleFileNameW (replacing \ with /) and
/third_party/rust/crates/rustix/src/backend/libc/fs/
Dsyscalls.rs1635 pub(crate) fn getpath(fd: BorrowedFd<'_>) -> io::Result<CString> { in getpath() function
/third_party/python/Doc/c-api/
Dintro.rst714 :c:func:`Py_GetProgramFullPath` (all defined in :file:`Modules/getpath.c`).
/third_party/python/Misc/
DHISTORY8637 - Issue #11320: fix bogus memory management in Modules/getpath.c, leading to
20943 - Bug #978645: Modules/getpath.c now builds properly in --disable-framework