Home
last modified time | relevance | path

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

/third_party/python/Modules/_io/
Dwinconsoleio.c101 wchar_t name_buf[MAX_PATH], *pname_buf = name_buf; in _PyIO_get_console_type() local
103 length = GetFullPathNameW(decoded_wstr, MAX_PATH, pname_buf, NULL); in _PyIO_get_console_type()
105 pname_buf = PyMem_New(wchar_t, length); in _PyIO_get_console_type()
106 if (pname_buf) in _PyIO_get_console_type()
107 length = GetFullPathNameW(decoded_wstr, length, pname_buf, NULL); in _PyIO_get_console_type()
114 wchar_t *name = pname_buf; in _PyIO_get_console_type()
129 if (pname_buf != name_buf) in _PyIO_get_console_type()
130 PyMem_Free(pname_buf); in _PyIO_get_console_type()