Home | History | Annotate | Download | only in disk_cache

Lines Matching defs:map_len

331   int map_len = data_len - sizeof(SparseHeader);
332 if (map_len > kMaxMapSize || map_len % 4)
396 int map_len = data_len - sizeof(sparse_header_);
397 if (map_len > kMaxMapSize || map_len % 4)
416 buf = new net::IOBuffer(map_len);
417 rv = entry_->ReadData(kSparseIndex, sizeof(sparse_header_), buf, map_len,
419 if (rv != map_len)
423 children_map_.Resize(map_len * 8, false);
424 children_map_.SetMap(reinterpret_cast<uint32*>(buf->data()), map_len);