HomeSort by relevance Sort by last modified time
    Searched defs:find_handle (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/testing/
file.cc 124 HANDLE find_handle = FindFirstFile((name + "/*").c_str(), &find_data); local
125 if (find_handle == INVALID_HANDLE_VALUE) {
143 } while(FindNextFile(find_handle, &find_data));
144 FindClose(find_handle);
  /external/chromium/base/
file_util_win.cc 99 HANDLE find_handle = FindFirstFile(filename_spec.c_str(), &find_file_data); local
100 if (find_handle != INVALID_HANDLE_VALUE) {
112 } while (FindNextFile(find_handle, &find_file_data));
113 FindClose(find_handle);
    [all...]

Completed in 574 milliseconds