OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hFind
(Results
1 - 7
of
7
) 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/zlib/src/contrib/minizip/
minizip.c
82
HANDLE
hFind
;
85
hFind
= FindFirstFileA(f,&ff32);
86
if (
hFind
!= INVALID_HANDLE_VALUE)
90
FindClose(
hFind
);
/external/valgrind/unittest/
windows_tests.cc
447
HANDLE
hFind
= FindFirstFileA("ZZZ/*", &data);
448
CHECK(
hFind
!= INVALID_HANDLE_VALUE);
450
CloseHandle(
hFind
);
/external/libpng/contrib/visupng/
VisualPng.c
519
HANDLE
hFind
;
547
hFind
= FindFirstFile(szImgFindName, &finddata);
548
bOk = (
hFind
!= (HANDLE) -1);
553
bOk = FindNextFile(
hFind
, &finddata);
555
FindClose(
hFind
);
563
hFind
= FindFirstFile(szImgFindName, &finddata);
564
bOk = (
hFind
!= (HANDLE) -1);
579
bOk = FindNextFile(
hFind
, &finddata);
581
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 114 milliseconds