Searched defs:path1 (Results 1 - 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
H A Dedk2module.c250 char *path1 = NULL; local
253 Py_FileSystemDefaultEncoding, &path1))
256 res = (*func)(path1);
259 return edk2_error_with_allocated_filename(path1);
260 PyMem_Free(path1);
270 char *path1 = NULL, *path2 = NULL; local
273 Py_FileSystemDefaultEncoding, &path1,
277 res = (*func)(path1, path2);
279 PyMem_Free(path1);
282 /* XXX how to report both path1 an
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c249 char *path1 = NULL; local
252 Py_FileSystemDefaultEncoding, &path1))
255 res = (*func)(path1);
258 return posix_error_with_allocated_filename(path1);
259 PyMem_Free(path1);
269 char *path1 = NULL, *path2 = NULL; local
272 Py_FileSystemDefaultEncoding, &path1,
276 res = (*func)(path1, path2);
278 PyMem_Free(path1);
281 /* XXX how to report both path1 an
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c708 char *path1 = NULL; local
711 Py_FileSystemDefaultEncoding, &path1))
714 res = (*func)(path1);
717 return posix_error_with_allocated_filename(path1);
718 PyMem_Free(path1);
728 char *path1 = NULL, *path2 = NULL; local
731 Py_FileSystemDefaultEncoding, &path1,
735 res = (*func)(path1, path2);
737 PyMem_Free(path1);
740 /* XXX how to report both path1 an
[all...]

Completed in 18 milliseconds