Home
last modified time | relevance | path

Searched refs:abspath_p (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Python/
Dfileutils.c1790 _Py_abspath(const wchar_t *path, wchar_t **abspath_p) in _Py_abspath() argument
1811 *abspath_p = NULL; in _Py_abspath()
1823 *abspath_p = woutbufp; in _Py_abspath()
1827 *abspath_p = _PyMem_RawWcsdup(woutbufp); in _Py_abspath()
1831 *abspath_p = _PyMem_RawWcsdup(path); in _Py_abspath()
1846 *abspath_p = PyMem_RawMalloc(len * sizeof(wchar_t)); in _Py_abspath()
1849 *abspath_p = NULL; in _Py_abspath()
1851 if (*abspath_p == NULL) { in _Py_abspath()
1855 wchar_t *abspath = *abspath_p; in _Py_abspath()
/third_party/python/Include/cpython/
Dfileutils.h143 PyAPI_FUNC(int) _Py_abspath(const wchar_t *path, wchar_t **abspath_p);