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

  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.cc 38 base::File::Info file_entry_info; local
39 file_entry_info.size = file_entry.file_size();
40 file_entry_info.is_directory =
42 file_entry_info.is_symbolic_link = false;
43 file_entry_info.last_modified =
45 file_entry_info.last_accessed = file_entry_info.last_modified;
46 file_entry_info.creation_time = base::Time();
47 return 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::File::Info* file_entry_info);
mtp_device_operations_util.cc 326 base::File::Info* file_entry_info) {
329 DCHECK(file_entry_info);
334 file_entry_info->size = entry.size;
335 file_entry_info->is_directory = entry.is_directory;
336 file_entry_info->is_symbolic_link = false;
337 file_entry_info->last_modified = entry.last_modified_time;
338 file_entry_info->last_accessed = entry.last_modified_time;
339 file_entry_info->creation_time = base::Time();

Completed in 143 milliseconds