OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hFind
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.cc
280
HANDLE
hFind
= FindFirstFileA(full_glob, &found); // A is for Ansi
281
if (
hFind
!= INVALID_HANDLE_VALUE) {
291
} while (FindNextFileA(
hFind
, &found) != FALSE); // A is for Ansi
292
FindClose(
hFind
);
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.cc
349
HANDLE
hFind
= FindFirstFileA(full_glob, &found); // A is for Ansi
350
if (
hFind
!= INVALID_HANDLE_VALUE) {
360
} while (FindNextFileA(
hFind
, &found) != FALSE); // A is for Ansi
361
FindClose(
hFind
);
/external/chromium_org/third_party/zlib/contrib/minizip/
minizip.c
69
HANDLE
hFind
;
72
hFind
= FindFirstFileA(f,&ff32);
73
if (
hFind
!= INVALID_HANDLE_VALUE)
77
FindClose(
hFind
);
/external/libpng/contrib/visupng/
VisualPng.c
521
HANDLE
hFind
;
549
hFind
= FindFirstFile(szImgFindName, &finddata);
550
bOk = (
hFind
!= (HANDLE) -1);
555
bOk = FindNextFile(
hFind
, &finddata);
557
FindClose(
hFind
);
565
hFind
= FindFirstFile(szImgFindName, &finddata);
566
bOk = (
hFind
!= (HANDLE) -1);
581
bOk = FindNextFile(
hFind
, &finddata);
583
FindClose(
hFind
);
/external/chromium_org/third_party/libxml/src/
runtest.c
126
HANDLE
hFind
;
148
hFind
= FindFirstFileA(pattern, &FindFileData);
149
if (
hFind
== INVALID_HANDLE_VALUE)
154
FindClose(
hFind
);
162
while(FindNextFileA(
hFind
, &FindFileData)) {
181
FindClose(
hFind
);
[
all
...]
Completed in 133 milliseconds