Home
last modified time | relevance | path

Searched refs:find_handle (Results 1 – 3 of 3) sorted by relevance

/external/protobuf/src/google/protobuf/testing/
Dfile.cc124 HANDLE find_handle = FindFirstFile((name + "/*").c_str(), &find_data); in DeleteRecursively() local
125 if (find_handle == INVALID_HANDLE_VALUE) { in DeleteRecursively()
143 } while(FindNextFile(find_handle, &find_data)); in DeleteRecursively()
144 FindClose(find_handle); in DeleteRecursively()
/external/jhead/
Djhead.c488 long find_handle;
502 find_handle = _findfirst(FilePattern, &finddata);
505 if (find_handle == -1) break;
527 if (_findnext(find_handle, &finddata) != 0) break;
529 _findclose(find_handle);
/external/chromium/base/
Dfile_util_win.cc99 HANDLE find_handle = FindFirstFile(filename_spec.c_str(), &find_file_data); in CountFilesCreatedAfter() local
100 if (find_handle != INVALID_HANDLE_VALUE) { in CountFilesCreatedAfter()
112 } while (FindNextFile(find_handle, &find_file_data)); in CountFilesCreatedAfter()
113 FindClose(find_handle); in CountFilesCreatedAfter()