OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:find_file_data
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
file_util_win.cc
96
WIN32_FIND_DATA
find_file_data
;
local
99
HANDLE find_handle = FindFirstFile(filename_spec.c_str(), &
find_file_data
);
103
if ((wcscmp(
find_file_data
.cFileName, L"..") == 0) ||
104
(wcscmp(
find_file_data
.cFileName, L".") == 0))
107
long result = CompareFileTime(&
find_file_data
.ftCreationTime, // NOLINT
112
} while (FindNextFile(find_handle, &
find_file_data
));
[
all
...]
/external/dbus/dbus/
dbus-sysdeps-wince-glue.c
745
WIN32_FIND_DATAW
find_file_data
;
local
753
result = FindFirstFileW (pathname, &
find_file_data
);
756
BOOL res = convert_find_data (&
find_file_data
, lpFindFileData);
776
WIN32_FIND_DATAW
find_file_data
;
local
780
result = FindNextFileW (hFindFile, &
find_file_data
);
782
result = convert_find_data (&
find_file_data
, lpFindFileData);
Completed in 152 milliseconds