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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c1078 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf; local
1086 woutbufp = malloc(result * sizeof(Py_UNICODE));
1087 if (!woutbufp)
1089 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
1092 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
1095 if (woutbufp != woutbuf)
1096 free(woutbufp);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c2427 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf; local
2435 woutbufp = malloc(result * sizeof(Py_UNICODE));
2436 if (!woutbufp)
2438 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
2441 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2444 if (woutbufp != woutbuf)
2445 free(woutbufp);

Completed in 29 milliseconds