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 37 base::File::Info file_entry_info; local
38 file_entry_info.size = file_entry.file_size();
39 file_entry_info.is_directory =
41 file_entry_info.is_symbolic_link = false;
42 file_entry_info.last_modified =
44 file_entry_info.last_accessed = file_entry_info.last_modified;
45 file_entry_info.creation_time = base::Time();
46 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 328 base::File::Info* file_entry_info) {
331 DCHECK(file_entry_info);
336 file_entry_info->size = entry.size;
337 file_entry_info->is_directory = entry.is_directory;
338 file_entry_info->is_symbolic_link = false;
339 file_entry_info->last_modified = entry.last_modified_time;
340 file_entry_info->last_accessed = entry.last_modified_time;
341 file_entry_info->creation_time = base::Time();

Completed in 72 milliseconds