HomeSort by relevance Sort by last modified time
    Searched refs:CreateEntry (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium/net/tools/dump_cache/
cache_dumper.h 31 virtual int CreateEntry(const std::string& key,
51 virtual int CreateEntry(const std::string& key, disk_cache::Entry** entry,
69 virtual int CreateEntry(const std::string& key, disk_cache::Entry** entry,
79 // This is a bit of a hack. As we get a CreateEntry, we coin the current
cache_dumper.cc 16 int CacheDumper::CreateEntry(const std::string& key,
19 return cache_->CreateEntry(key, entry, callback);
67 int DiskDumper::CreateEntry(const std::string& key,
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 150 rv = cache->CreateEntry(test_name, &entry, &cb);
161 rv = cache->CreateEntry(test_name, &entry, &cb);
184 rv = cache->CreateEntry(kCrashEntryName, &entry, &cb);
192 rv = cache->CreateEntry("some other key", &entry, &cb);
227 rv = cache->CreateEntry("some other key", &entry, &cb);
233 rv = cache->CreateEntry(kCrashEntryName, &entry, &cb);
274 rv = cache->CreateEntry(key, &entry, &cb);
280 rv = cache->CreateEntry(kCrashEntryName, &entry, &cb);
291 rv = cache->CreateEntry(kCrashEntryName, &entry, &cb);
  /external/chromium/net/disk_cache/
mem_backend_impl.h 69 virtual int CreateEntry(const std::string& key, Entry** entry,
89 bool CreateEntry(const std::string& key, Entry** entry);
backend_unittest.cc 69 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry1));
79 EXPECT_NE(net::OK, CreateEntry("the first key", &entry1));
82 ASSERT_EQ(net::OK, CreateEntry("some other key", &entry2));
102 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry1));
103 ASSERT_EQ(net::OK, CreateEntry("some other key", &entry2));
135 ASSERT_EQ(net::OK, CreateEntry(kName1, &entry1));
137 ASSERT_EQ(net::OK, CreateEntry(kName2, &entry2));
161 ASSERT_EQ(net::OK, CreateEntry(buffer2, &entry2)) << "key on block file";
166 ASSERT_EQ(net::OK, CreateEntry(buffer2, &entry2)) << "key on external file";
245 ASSERT_EQ(net::OK, CreateEntry("key", &entry))
    [all...]
mem_backend_impl.cc 142 int MemBackendImpl::CreateEntry(const std::string& key, Entry** entry,
144 if (CreateEntry(key, entry))
205 bool MemBackendImpl::CreateEntry(const std::string& key, Entry** entry) {
211 if (!cache_entry->CreateEntry(key, net_log_)) {
entry_unittest.cc 121 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry));
147 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry));
333 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry));
365 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry));
481 ASSERT_EQ(net::OK, CreateEntry("the first key", &entry));
516 ASSERT_EQ(net::OK, CreateEntry(key, &entry));
528 ASSERT_EQ(net::OK, CreateEntry(key, &entry));
535 ASSERT_EQ(net::OK, CreateEntry(key, &entry));
543 ASSERT_EQ(net::OK, CreateEntry(key, &entry));
564 ASSERT_EQ(net::OK, CreateEntry(key, &entry))
    [all...]
disk_cache.h 86 virtual int CreateEntry(const std::string& key, Entry** entry,
disk_cache_test_base.h 92 int CreateEntry(const std::string& key, disk_cache::Entry** entry);
mem_entry_impl.h 58 bool CreateEntry(const std::string& key, net::NetLog* net_log);
in_flight_backend_io.h 51 void CreateEntry(const std::string& key, Entry** entry);
150 void CreateEntry(const std::string& key, Entry** entry,
stress_cache.cc 147 rv = cache->CreateEntry(keys[key], &entries[slot], &cb);
disk_cache_test_base.cc 87 int DiskCacheTestWithCache::CreateEntry(const std::string& key,
90 int rv = cache_->CreateEntry(key, entry, &cb);
in_flight_backend_io.cc 64 void BackendIO::CreateEntry(const std::string& key, Entry** entry) {
306 void InFlightBackendIO::CreateEntry(const std::string& key, Entry** entry,
309 operation->CreateEntry(key, entry);
backend_impl.h 253 virtual int CreateEntry(const std::string& key, Entry** entry,
disk_cache_perftest.cc 70 int rv = cache->CreateEntry(entry.key, &cache_entry, &cb);
entry_impl.h 62 bool CreateEntry(Addr node_address, const std::string& key, uint32 hash);
backend_impl.cc 758 if (!cache_entry->CreateEntry(node_address, key, hash)) {
    [all...]
  /external/chromium/net/url_request/
url_request_throttler_unittest.cc 174 void CreateEntry(bool is_outdated) {
403 manager.CreateEntry(true); // true = Entry is outdated.
404 manager.CreateEntry(true);
405 manager.CreateEntry(true);
409 manager.CreateEntry(false);
410 manager.CreateEntry(false);
411 manager.CreateEntry(false);
412 manager.CreateEntry(true);
view_cache_helper_unittest.cc 73 int rv = cache->CreateEntry(key, &entry, &cb);
191 rv = cache->CreateEntry(key, &entry, &cb);
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.cc 226 return backend_->CreateEntry(key(), callback_->entry_pointer(), callback_);
http_cache.h 293 int CreateEntry(const std::string& key, ActiveEntry** entry,
http_cache.cc 754 int HttpCache::CreateEntry(const std::string& key, ActiveEntry** entry,
771 int rv = disk_cache_->CreateEntry(key, &(pending_op->disk_entry),
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable_unittest.cc 388 void CreateEntry(const std::string& entryname) {
389 CreateEntry(entryname, kId);
393 void CreateEntry(const std::string& entryname, const int id) {
394 CreateEntry(entryname, TestIdFactory::FromNumber(id));
396 void CreateEntry(const std::string& entryname, Id id) {
691 CreateEntry("rtc");
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
malware_details_unittest.cc 90 int rv = cache->CreateEntry(key, &entry, &cb);

Completed in 561 milliseconds

1 2