OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EntryRecord
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/webkit/browser/appcache/
appcache_database.h
54
struct
EntryRecord
{
55
EntryRecord
() : cache_id(0), flags(0), response_id(0), response_size(0) {}
116
int64 cache_id, std::vector<
EntryRecord
>* records);
118
const GURL& url, std::vector<
EntryRecord
>* records);
119
bool FindEntry(int64 cache_id, const GURL& url,
EntryRecord
* record);
120
bool InsertEntry(const
EntryRecord
* record);
122
const std::vector<
EntryRecord
>& records);
179
void ReadEntryRecord(const sql::Statement& statement,
EntryRecord
* record);
appcache.h
115
const std::vector<AppCacheDatabase::
EntryRecord
>& entries,
125
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
531
int64 cache_id, std::vector<
EntryRecord
>* records) {
544
records->push_back(
EntryRecord
());
553
const GURL& url, std::vector<
EntryRecord
>* records) {
566
records->push_back(
EntryRecord
());
575
int64 cache_id, const GURL& url,
EntryRecord
* record) {
597
bool AppCacheDatabase::InsertEntry(const
EntryRecord
* record) {
616
const std::vector<
EntryRecord
>& records) {
622
std::vector<
EntryRecord
>::const_iterator iter = records.begin();
943
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
392
std::vector<AppCacheDatabase::
EntryRecord
> entry_records_;
686
std::vector<AppCacheDatabase::
EntryRecord
>::const_iterator entry_iter =
791
AppCacheDatabase::
EntryRecord
,
792
AppCacheDatabase::
EntryRecord
,
799
const AppCacheDatabase::
EntryRecord
& lhs,
800
const AppCacheDatabase::
EntryRecord
& rhs) {
804
int compute_value(const AppCacheDatabase::
EntryRecord
& entry) {
957
std::vector<AppCacheDatabase::
EntryRecord
> entries;
965
std::vector<AppCacheDatabase::
EntryRecord
>::iterator iter;
[
all
...]
appcache_database_unittest.cc
160
AppCacheDatabase::
EntryRecord
entry;
184
std::vector<AppCacheDatabase::
EntryRecord
> found;
[
all
...]
appcache_unittest.cc
581
std::vector<AppCacheDatabase::
EntryRecord
> entries;
/external/chromium_org/net/disk_cache/v3/
disk_format_v3.h
155
struct
EntryRecord
{
172
COMPILE_ASSERT(sizeof(
EntryRecord
) == 104, bad_EntryRecord);
Completed in 48 milliseconds