Home | History | Annotate | Download | only in base

Lines Matching refs:find_file_data

96   WIN32_FIND_DATA find_file_data;
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));