OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindCache
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/webkit/browser/appcache/
appcache_database.h
108
bool
FindCache
(int64 cache_id, CacheRecord* record);
appcache_storage_impl_unittest.cc
633
EXPECT_TRUE(database()->
FindCache
(cache_->cache_id(), &cache_record));
677
EXPECT_TRUE(database()->
FindCache
(2, &cache_record));
680
EXPECT_FALSE(database()->
FindCache
(1, &cache_record));
724
EXPECT_TRUE(database()->
FindCache
(1, &cache_record));
782
EXPECT_FALSE(database()->
FindCache
(cache_->cache_id(), &cache_record));
837
EXPECT_FALSE(database()->
FindCache
(1, &cache_record));
[
all
...]
appcache_database_unittest.cc
239
EXPECT_FALSE(db.
FindCache
(1, &record));
250
EXPECT_TRUE(db.
FindCache
(1, &record));
266
EXPECT_FALSE(db.
FindCache
(1, &record));
[
all
...]
appcache_database.cc
443
bool AppCacheDatabase::
FindCache
(int64 cache_id, CacheRecord* record) {
[
all
...]
appcache_storage_impl.cc
502
database_->
FindCache
(cache_id_, &cache_record_) &&
[
all
...]
Completed in 39 milliseconds