Home
last modified time | relevance | path

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

/third_party/python/Python/
Dfileutils.c1997 wchar_t woutbuf[MAX_PATH], *woutbufp = woutbuf; in _Py_abspath() local
2009 woutbufp = PyMem_RawMalloc((size_t)result * sizeof(wchar_t)); in _Py_abspath()
2012 woutbufp = NULL; in _Py_abspath()
2014 if (!woutbufp) { in _Py_abspath()
2019 result = GetFullPathNameW(path, result, woutbufp, NULL); in _Py_abspath()
2021 PyMem_RawFree(woutbufp); in _Py_abspath()
2026 if (woutbufp != woutbuf) { in _Py_abspath()
2027 *abspath_p = woutbufp; in _Py_abspath()
2031 *abspath_p = _PyMem_RawWcsdup(woutbufp); in _Py_abspath()