Searched refs:cache_entry (Results 1 - 7 of 7) sorted by relevance

/external/chromium/net/disk_cache/
H A Ddisk_cache_perftest.cc68 disk_cache::Entry* cache_entry; local
70 int rv = cache->CreateEntry(entry.key, &cache_entry, &cb);
73 int ret = cache_entry->WriteData(0, 0, buffer1, kSize1, &callback, false);
79 ret = cache_entry->WriteData(1, 0, buffer2, entry.data_len, &callback,
85 cache_entry->Close();
116 disk_cache::Entry* cache_entry; local
118 int rv = cache->OpenEntry(entries[i].key, &cache_entry, &cb);
121 int ret = cache_entry->ReadData(0, 0, buffer1, kSize1, &callback);
127 ret = cache_entry->ReadData(1, 0, buffer2, entries[i].data_len, &callback);
132 cache_entry
[all...]
H A Dbackend_impl.cc675 EntryImpl* cache_entry = MatchEntry(key, hash, false, Addr(), &error); local
676 if (!cache_entry) {
681 if (ENTRY_NORMAL != cache_entry->entry()->Data()->state) {
683 cache_entry->Release();
688 eviction_.OnOpenEntry(cache_entry);
694 return cache_entry;
754 scoped_refptr<EntryImpl> cache_entry(
758 if (!cache_entry->CreateEntry(node_address, key, hash)) {
766 cache_entry->BeginLogging(net_log_, true);
769 open_entries_[entry_address.value()] = cache_entry;
898 EntryImpl* cache_entry = NULL; local
1569 scoped_refptr<EntryImpl> cache_entry, parent_entry; local
[all...]
H A Dmem_backend_impl.cc210 MemEntryImpl* cache_entry = new MemEntryImpl(this);
211 if (!cache_entry->CreateEntry(key, net_log_)) {
216 rankings_.Insert(cache_entry);
217 entries_[key] = cache_entry;
219 *entry = cache_entry;
H A Dbackend_impl.h337 bool CheckEntry(EntryImpl* cache_entry);
/external/v8/src/
H A Dprofile-generator.cc129 HashMap::Entry* cache_entry = names_.Lookup(str, hash, true); local
130 if (cache_entry->value == NULL) {
132 cache_entry->value = str;
136 return reinterpret_cast<const char*>(cache_entry->value);
1533 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), false); local
1534 if (cache_entry != NULL) {
1535 EntryInfo* entry_info = reinterpret_cast<EntryInfo*>(cache_entry->value);
1545 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), true); local
1546 ASSERT(cache_entry->value == NULL);
1547 cache_entry
1587 HashMap::Entry* cache_entry = local
1596 HashMap::Entry* cache_entry = local
2850 HashMap::Entry* cache_entry = nodes_.Lookup(entry, ObjectHash(entry), true); local
2859 HashMap::Entry* cache_entry = strings_.Lookup( local
[all...]
/external/chromium/net/base/
H A Dhost_resolver_impl.cc1019 const HostCache::Entry* cache_entry = cache_->Lookup( local
1021 if (cache_entry) {
1023 int net_error = cache_entry->error;
1025 addresses->SetFrom(cache_entry->addrlist, info.port());
/external/v8/src/arm/
H A Dcode-stubs-arm.cc2753 const Register cache_entry = r0; local
2800 __ mov(cache_entry, Operand(cache_array));
2801 // cache_entry points to cache array.
2804 __ ldr(cache_entry, MemOperand(cache_entry, cache_array_index));
2807 __ cmp(cache_entry, Operand(0, RelocInfo::NONE));
2827 __ add(cache_entry, cache_entry, Operand(r1, LSL, 2));
2829 __ ldm(ia, cache_entry, r4.bit() | r5.bit() | r6.bit());
2862 // it on the stack and pop it into register cache_entry afte
[all...]

Completed in 100 milliseconds