Lines Matching refs:woutbufp
2613 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
2621 woutbufp = malloc(result * sizeof(Py_UNICODE));
2622 if (!woutbufp)
2624 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
2627 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2630 if (woutbufp != woutbuf)
2631 free(woutbufp);