HomeSort by relevance Sort by last modified time
    Searched full:entry_store (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/disk_cache/blockfile/
entry_impl.cc 409 EntryStore* entry_store = entry_.Data(); local
411 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
416 entry_store->rankings_node = node_address.value();
419 entry_store->hash = hash;
420 entry_store->creation_time = Time::Now().ToInternalValue();
421 entry_store->key_len = static_cast<int32>(key.size());
422 if (entry_store->key_len > kMaxInternalKeyLength) {
424 if (!CreateBlock(entry_store->key_len + 1, &address))
427 entry_store->long_key = address.value();
443 memcpy(entry_store->key, key.data(), key.size())
    [all...]
entry_impl_v3.cc 264 EntryStore* entry_store = entry_.Data(); local
266 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
271 entry_store->rankings_node = node_address.value();
274 entry_store->hash = hash;
275 entry_store->creation_time = Time::Now().ToInternalValue();
276 entry_store->key_len = static_cast<int32>(key.size());
277 if (entry_store->key_len > kMaxInternalKeyLength) {
279 if (!CreateBlock(entry_store->key_len + 1, &address))
282 entry_store->long_key = address.value();
298 memcpy(entry_store->key, key.data(), key.size())
    [all...]

Completed in 131 milliseconds