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

  /external/chromium_org/apps/
app_restore_service_browsertest.cc 84 std::vector<SavedFileEntry> file_entries = local
87 ASSERT_EQ(2u, file_entries.size());
90 file_entries = saved_files_service->GetAllFileEntries(extension->id());
92 ASSERT_TRUE(file_entries.empty());
130 std::vector<SavedFileEntry> file_entries = local
137 for (std::vector<SavedFileEntry>::const_iterator it = file_entries.begin();
138 it != file_entries.end(); ++it) {
saved_files_service.cc 34 const char kFileEntries[] = "file_entries";
58 DictionaryValue* file_entries = update.Get(); local
59 if (!file_entries)
60 file_entries = update.Create();
61 DCHECK(!file_entries->GetDictionaryWithoutPathExpansion(file_entry.id, NULL));
68 file_entries->SetWithoutPathExpansion(file_entry.id, file_entry_dict);
77 DictionaryValue* file_entries = update.Get(); local
78 DCHECK(file_entries);
80 file_entries->GetDictionaryWithoutPathExpansion(file_entry.id,
93 DictionaryValue* file_entries = update.Get() local
110 const DictionaryValue* file_entries = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.h 123 // If there is no error, |error| is set to false, |file_entries| has the
127 // If there is an error, |error| is set to true, |file_entries| is empty
132 const std::vector<MtpFileEntry>& file_entries,
mtp_device_task_helper.cc 155 const std::vector<MtpFileEntry>& file_entries,
163 MTPDeviceObjectEnumerator file_enum(file_entries);
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_manager.h 45 typedef base::Callback<void(const std::vector<MtpFileEntry>& file_entries,
media_transfer_protocol_daemon_client.cc 324 std::vector<MtpFileEntry> file_entries; local
334 file_entries.push_back(entries_protobuf.file_entries(i));
335 callback.Run(file_entries);
media_transfer_protocol_daemon_client.h 59 typedef base::Callback<void(const std::vector<MtpFileEntry>& file_entries)
media_transfer_protocol_manager.cc 368 void OnReadDirectory(const std::vector<MtpFileEntry>& file_entries) {
370 read_directory_callbacks_.front().Run(file_entries, false);
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_apitest.cc 491 std::vector<apps::SavedFileEntry> file_entries = apps::SavedFilesService::Get( local
493 ASSERT_EQ(1u, file_entries.size());
494 EXPECT_EQ(test_file, file_entries[0].path);
495 EXPECT_EQ(1, file_entries[0].sequence_number);
496 EXPECT_FALSE(file_entries[0].writable);
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_handlers.cc 416 ListValue* file_entries = new ListValue(); local
417 details->Set("entries", file_entries);
422 file_entries->Append(file_def);

Completed in 124 milliseconds