OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StorageBlock
(Results
1 - 8
of
8
) sorted by null
/external/chromium/net/disk_cache/
storage_block.h
23
//
StorageBlock
<TypeA> a(file, address);
24
//
StorageBlock
<TypeB> b(file, address);
32
class
StorageBlock
: public FileBlock {
34
StorageBlock
(MappedFile* file, Addr address);
35
virtual ~
StorageBlock
();
84
DISALLOW_COPY_AND_ASSIGN(
StorageBlock
);
87
typedef
StorageBlock
<EntryStore> CacheEntryBlock;
88
typedef
StorageBlock
<RankingsNode> CacheRankingsBlock;
storage_block-inl.h
16
template<typename T>
StorageBlock
<T>::
StorageBlock
(MappedFile* file,
25
template<typename T>
StorageBlock
<T>::~
StorageBlock
() {
31
template<typename T> void*
StorageBlock
<T>::buffer() const {
35
template<typename T> size_t
StorageBlock
<T>::size() const {
41
template<typename T> int
StorageBlock
<T>::offset() const {
45
template<typename T> bool
StorageBlock
<T>::LazyInit(MappedFile* file,
60
template<typename T> void
StorageBlock
<T>::SetData(T* other) {
66
template<typename T> void
StorageBlock
<T>::Discard()
[
all
...]
/external/chromium_org/net/disk_cache/
storage_block-inl.h
16
template<typename T>
StorageBlock
<T>::
StorageBlock
(MappedFile* file,
25
template<typename T>
StorageBlock
<T>::~
StorageBlock
() {
31
template<typename T> void*
StorageBlock
<T>::buffer() const {
35
template<typename T> size_t
StorageBlock
<T>::size() const {
41
template<typename T> int
StorageBlock
<T>::offset() const {
45
template<typename T> bool
StorageBlock
<T>::LazyInit(MappedFile* file,
60
template<typename T> void
StorageBlock
<T>::SetData(T* other) {
66
template<typename T> void
StorageBlock
<T>::Discard()
[
all
...]
storage_block.h
22
//
StorageBlock
<TypeA> a(file, address);
23
//
StorageBlock
<TypeB> b(file, address);
31
class
StorageBlock
: public FileBlock {
33
StorageBlock
(MappedFile* file, Addr address);
34
virtual ~
StorageBlock
();
92
DISALLOW_COPY_AND_ASSIGN(
StorageBlock
);
storage_block_unittest.cc
13
typedef disk_cache::
StorageBlock
<disk_cache::EntryStore> CacheEntryBlock;
entry_impl.h
20
typedef
StorageBlock
<EntryStore> CacheEntryBlock;
21
typedef
StorageBlock
<RankingsNode> CacheRankingsBlock;
rankings.h
22
typedef
StorageBlock
<RankingsNode> CacheRankingsBlock;
/external/chromium_org/net/tools/dump_cache/
dump_files.cc
240
disk_cache::
StorageBlock
<disk_cache::EntryStore> entry_block(file, address);
265
disk_cache::
StorageBlock
<disk_cache::RankingsNode> rank_block(file, address);
Completed in 153 milliseconds