Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_io/
Dwinconsoleio.c104 wchar_t name_buf[MAX_PATH], *pname_buf = name_buf; in _PyIO_get_console_type() local
106 length = GetFullPathNameW(decoded_wstr, MAX_PATH, pname_buf, NULL); in _PyIO_get_console_type()
108 pname_buf = PyMem_New(wchar_t, length); in _PyIO_get_console_type()
109 if (pname_buf) in _PyIO_get_console_type()
110 length = GetFullPathNameW(decoded_wstr, length, pname_buf, NULL); in _PyIO_get_console_type()
117 wchar_t *name = pname_buf; in _PyIO_get_console_type()
132 if (pname_buf != name_buf) in _PyIO_get_console_type()
133 PyMem_Free(pname_buf); in _PyIO_get_console_type()