Home
last modified time | relevance | path

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

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