Searched refs:EntryCell (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3.h41 // 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 { class in namespace:disk_cache
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 cel
[all...]
H A Dindex_table_v3.cc231 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
338 EntryCell::EntryCell() : cell_num_(0), hash_(0), small_table_(false) { function in class:disk_cache::EntryCell
342 EntryCell::EntryCell(int32 cell_num, function in class:disk_cache::EntryCell
366 EntryCell::EntryCell(int32 cell_num, function in class:disk_cache::EntryCell
[all...]
H A Dindex_table_v3_unittest.cc12 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
[all...]

Completed in 75 milliseconds