HomeSort by relevance Sort by last modified time
    Searched refs:EntryCell (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/net/disk_cache/blockfile/
index_table_v3.h 41 // An EntryCell represents a single entity stored by the index table. Users are
48 // position to another, so an EntryCell may be invalid by the time a long
51 class NET_EXPORT_PRIVATE EntryCell {
53 ~EntryCell();
71 static EntryCell GetEntryCellForTest(int32 cell_num,
82 EntryCell();
83 EntryCell(int32 cell_num, uint32 hash, Addr address, bool small_table);
84 EntryCell(int32 cell_num,
114 std::vector<EntryCell> cells;
149 virtual void DeleteCell(EntryCell cell) = 0
    [all...]
index_table_v3.cc 231 void UpdateIterator(const disk_cache::EntryCell& cell,
262 EntryCell::~EntryCell() {
265 bool EntryCell::IsValid() const {
273 Addr EntryCell::GetAddress() const {
287 EntryState EntryCell::GetState() const {
291 EntryGroup EntryCell::GetGroup() const {
295 int EntryCell::GetReuse() const {
299 int EntryCell::GetTimestamp() const {
303 void EntryCell::SetState(EntryState state)
    [all...]
index_table_v3_unittest.cc 12 using disk_cache::EntryCell;
23 EntryCell entry = EntryCell::GetEntryCellForTest(0, 0, addr, cell, false);
42 virtual void DeleteCell(EntryCell cell) OVERRIDE {}
43 virtual void FixCell(EntryCell cell) OVERRIDE {}
148 TEST(DiskCacheIndexTable, EntryCell) {
160 EntryCell entry = EntryCell::GetEntryCellForTest(cell_num, hash, addr, NULL,
184 EntryCell entry2 = EntryCell::GetEntryCellForTest(cell_num, hash, addr
    [all...]

Completed in 75 milliseconds