HomeSort by relevance Sort by last modified time
    Searched refs:file_entry_info (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.cc 135 base::PlatformFileInfo file_entry_info; local
136 file_entry_info.size = file_entry.file_size();
137 file_entry_info.is_directory =
139 file_entry_info.is_symbolic_link = false;
140 file_entry_info.last_modified =
142 file_entry_info.last_accessed = file_entry_info.last_modified;
143 file_entry_info.creation_time = base::Time();
147 file_entry_info));
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_operations_util.h 33 // |file_entry_info|. On failure, returns the corresponding platform file error
34 // and |file_entry_info| is not set.
38 base::PlatformFileInfo* file_entry_info);
mtp_device_operations_util.cc 321 base::PlatformFileInfo* file_entry_info) {
324 DCHECK(file_entry_info);
329 file_entry_info->size = entry.size;
330 file_entry_info->is_directory = entry.is_directory;
331 file_entry_info->is_symbolic_link = false;
332 file_entry_info->last_modified = entry.last_modified_time;
333 file_entry_info->last_accessed = entry.last_modified_time;
334 file_entry_info->creation_time = base::Time();

Completed in 474 milliseconds