Searched defs:entry_store (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/disk_cache/v3/
H A Dentry_impl_v3.cc253 EntryStore* entry_store = entry_.Data(); local
255 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
260 entry_store->rankings_node = node_address.value();
263 entry_store->hash = hash;
264 entry_store->creation_time = Time::Now().ToInternalValue();
265 entry_store->key_len = static_cast<int32>(key.size());
266 if (entry_store->key_len > kMaxInternalKeyLength) {
268 if (!CreateBlock(entry_store->key_len + 1, &address))
271 entry_store->long_key = address.value();
287 memcpy(entry_store
[all...]
/external/chromium/net/disk_cache/
H A Dentry_impl.cc406 EntryStore* entry_store = entry_.Data(); local
408 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
413 entry_store->rankings_node = node_address.value();
416 entry_store->hash = hash;
417 entry_store->creation_time = Time::Now().ToInternalValue();
418 entry_store->key_len = static_cast<int32>(key.size());
419 if (entry_store->key_len > kMaxInternalKeyLength) {
421 if (!CreateBlock(entry_store->key_len + 1, &address))
424 entry_store->long_key = address.value();
440 memcpy(entry_store
[all...]
/external/chromium_org/net/disk_cache/
H A Dentry_impl.cc406 EntryStore* entry_store = entry_.Data(); local
408 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
413 entry_store->rankings_node = node_address.value();
416 entry_store->hash = hash;
417 entry_store->creation_time = Time::Now().ToInternalValue();
418 entry_store->key_len = static_cast<int32>(key.size());
419 if (entry_store->key_len > kMaxInternalKeyLength) {
421 if (!CreateBlock(entry_store->key_len + 1, &address))
424 entry_store->long_key = address.value();
440 memcpy(entry_store
[all...]

Completed in 336 milliseconds