Home
last modified time | relevance | path

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

/third_party/python/Python/
Dfileutils.c1994 _Py_abspath(const wchar_t *path, wchar_t **abspath_p) in _Py_abspath() argument
2015 *abspath_p = NULL; in _Py_abspath()
2027 *abspath_p = woutbufp; in _Py_abspath()
2031 *abspath_p = _PyMem_RawWcsdup(woutbufp); in _Py_abspath()
2035 *abspath_p = _PyMem_RawWcsdup(path); in _Py_abspath()
2050 *abspath_p = PyMem_RawMalloc(len * sizeof(wchar_t)); in _Py_abspath()
2053 *abspath_p = NULL; in _Py_abspath()
2055 if (*abspath_p == NULL) { in _Py_abspath()
2059 wchar_t *abspath = *abspath_p; in _Py_abspath()
/third_party/python/Include/cpython/
Dfileutils.h142 PyAPI_FUNC(int) _Py_abspath(const wchar_t *path, wchar_t **abspath_p);