OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UseIfExists
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/disk_cache/simple/
simple_index_unittest.cc
276
TEST_F(SimpleIndexTest,
UseIfExists
) {
281
// Confirm "
UseIfExists
()" always returns true before the callback is called
285
EXPECT_TRUE(index()->
UseIfExists
(kHash1));
288
EXPECT_TRUE(index()->
UseIfExists
(kHash1));
293
EXPECT_TRUE(index()->
UseIfExists
(kHash1));
297
EXPECT_TRUE(index()->
UseIfExists
(kHash1));
301
// Confirm "
UseIfExists
() returns conditionally now
302
EXPECT_FALSE(index()->
UseIfExists
(kHash1));
305
EXPECT_TRUE(index()->
UseIfExists
(kHash1));
310
EXPECT_TRUE(index()->
UseIfExists
(kHash1))
[
all
...]
simple_index.h
100
bool
UseIfExists
(uint64 entry_hash);
simple_index.cc
291
bool SimpleIndex::
UseIfExists
(uint64 entry_hash) {
simple_entry_impl.cc
857
backend_->index()->
UseIfExists
(entry_hash_);
[
all
...]
simple_backend_impl.cc
474
index_->
UseIfExists
(simple_util::GetEntryHashKey(key));
Completed in 231 milliseconds