OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hFindFile
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c
930
HANDLE
hFindFile
;
932
hFindFile
= FindFirstFileA(pszFile, &FileData);
933
if (
hFindFile
== INVALID_HANDLE_VALUE)
935
FindClose(
hFindFile
);
948
HANDLE
hFindFile
;
950
hFindFile
= FindFirstFileW(pszFile, &FileData);
951
if (
hFindFile
== INVALID_HANDLE_VALUE)
953
FindClose(
hFindFile
);
[
all
...]
/external/python/cpython2/Modules/
posixmodule.c
1111
HANDLE
hFindFile
;
1113
hFindFile
= FindFirstFileA(pszFile, &FileData);
1114
if (
hFindFile
== INVALID_HANDLE_VALUE)
1116
FindClose(
hFindFile
);
1129
HANDLE
hFindFile
;
1131
hFindFile
= FindFirstFileW(pszFile, &FileData);
1132
if (
hFindFile
== INVALID_HANDLE_VALUE)
1134
FindClose(
hFindFile
);
[
all
...]
/external/python/cpython3/Modules/
posixmodule.c
[
all
...]
Completed in 322 milliseconds