OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EntryRecord
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/content/browser/appcache/
appcache_database.h
70
struct
EntryRecord
{
71
EntryRecord
() : cache_id(0), flags(0), response_id(0), response_size(0) {}
132
int64 cache_id, std::vector<
EntryRecord
>* records);
134
const GURL& url, std::vector<
EntryRecord
>* records);
135
bool FindEntry(int64 cache_id, const GURL& url,
EntryRecord
* record);
136
bool InsertEntry(const
EntryRecord
* record);
138
const std::vector<
EntryRecord
>& records);
195
void ReadEntryRecord(const sql::Statement& statement,
EntryRecord
* record);
appcache.h
119
const std::vector<AppCacheDatabase::
EntryRecord
>& entries,
129
std::vector<AppCacheDatabase::
EntryRecord
>* entries,
appcache.cc
153
const std::vector<AppCacheDatabase::
EntryRecord
>& entries,
162
const AppCacheDatabase::
EntryRecord
& entry = entries.at(i);
194
std::vector<AppCacheDatabase::
EntryRecord
>* entries,
209
entries->push_back(AppCacheDatabase::
EntryRecord
());
210
AppCacheDatabase::
EntryRecord
& record = entries->back();
appcache_database.cc
530
int64 cache_id, std::vector<
EntryRecord
>* records) {
543
records->push_back(
EntryRecord
());
552
const GURL& url, std::vector<
EntryRecord
>* records) {
565
records->push_back(
EntryRecord
());
574
int64 cache_id, const GURL& url,
EntryRecord
* record) {
596
bool AppCacheDatabase::InsertEntry(const
EntryRecord
* record) {
615
const std::vector<
EntryRecord
>& records) {
621
std::vector<
EntryRecord
>::const_iterator iter = records.begin();
942
const sql::Statement& statement,
EntryRecord
* record) {
[
all
...]
appcache_storage_impl_unittest.cc
731
std::vector<AppCacheDatabase::
EntryRecord
> entry_records;
803
AppCacheDatabase::
EntryRecord
entry_record;
840
std::vector<AppCacheDatabase::
EntryRecord
> entry_records;
[
all
...]
appcache_storage_impl.cc
406
std::vector<AppCacheDatabase::
EntryRecord
> entry_records_;
704
std::vector<AppCacheDatabase::
EntryRecord
>::const_iterator entry_iter =
809
AppCacheDatabase::
EntryRecord
,
810
AppCacheDatabase::
EntryRecord
,
817
const AppCacheDatabase::
EntryRecord
& lhs,
818
const AppCacheDatabase::
EntryRecord
& rhs) {
822
int compute_value(const AppCacheDatabase::
EntryRecord
& entry) {
[
all
...]
appcache_database_unittest.cc
193
AppCacheDatabase::
EntryRecord
entry;
217
std::vector<AppCacheDatabase::
EntryRecord
> found;
[
all
...]
appcache_unittest.cc
586
std::vector<AppCacheDatabase::
EntryRecord
> entries;
/external/chromium_org/net/disk_cache/blockfile/
disk_format_v3.h
211
struct
EntryRecord
{
228
COMPILE_ASSERT(sizeof(
EntryRecord
) == 104, bad_EntryRecord);
entry_impl_v3.h
188
scoped_ptr<
EntryRecord
> entry_; // Basic record for this entry.
entry_impl_v3.cc
36
typedef StorageBlock<
EntryRecord
> CacheEntryBlockV3;
[
all
...]
Completed in 903 milliseconds