OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnlineWhiteListRecord
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/content/browser/appcache/
appcache_database.h
91
struct
OnlineWhiteListRecord
{
92
OnlineWhiteListRecord
() : cache_id(0), is_pattern(false) {}
165
int64 cache_id, std::vector<
OnlineWhiteListRecord
>* records);
166
bool InsertOnlineWhiteList(const
OnlineWhiteListRecord
* record);
168
const std::vector<
OnlineWhiteListRecord
>& records);
203
const sql::Statement& statement,
OnlineWhiteListRecord
* record);
appcache.h
122
const std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>& whitelists);
132
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>* whitelists);
appcache.cc
156
const std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>& whitelists) {
182
const AppCacheDatabase::
OnlineWhiteListRecord
& record = whitelists.at(i);
197
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>* whitelists) {
238
whitelists->push_back(AppCacheDatabase::
OnlineWhiteListRecord
());
239
AppCacheDatabase::
OnlineWhiteListRecord
& record = whitelists->back();
appcache_database.cc
760
int64 cache_id, std::vector<
OnlineWhiteListRecord
>* records) {
773
records->push_back(
OnlineWhiteListRecord
());
781
const
OnlineWhiteListRecord
* record) {
798
const std::vector<
OnlineWhiteListRecord
>& records) {
804
std::vector<
OnlineWhiteListRecord
>::const_iterator iter = records.begin();
985
const sql::Statement& statement,
OnlineWhiteListRecord
* record) {
[
all
...]
appcache_database_unittest.cc
563
const AppCacheDatabase::
OnlineWhiteListRecord
kZeroRecord;
564
AppCacheDatabase::
OnlineWhiteListRecord
record;
565
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
> records;
[
all
...]
appcache_storage_impl_unittest.cc
817
AppCacheDatabase::
OnlineWhiteListRecord
online_whitelist_record;
848
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
> whitelist_records;
[
all
...]
appcache_storage_impl.cc
411
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>
859
typedef std::vector<AppCacheDatabase::
OnlineWhiteListRecord
>
[
all
...]
appcache_unittest.cc
589
std::vector<AppCacheDatabase::
OnlineWhiteListRecord
> whitelists;
Completed in 100 milliseconds