Searched defs:response_ids (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/content/browser/appcache/
H A Dappcache_database.h143 int64 cache_id, std::vector<int64>* response_ids) {
144 return FindResponseIdsForCacheHelper(cache_id, response_ids, NULL);
147 int64 cache_id, std::set<int64>* response_ids) {
148 return FindResponseIdsForCacheHelper(cache_id, NULL, response_ids);
171 bool GetDeletableResponseIds(std::vector<int64>* response_ids,
173 bool InsertDeletableResponseIds(const std::vector<int64>& response_ids);
174 bool DeleteDeletableResponseIds(const std::vector<int64>& response_ids);
142 FindResponseIdsForCacheAsVector( int64 cache_id, std::vector<int64>* response_ids) argument
146 FindResponseIdsForCacheAsSet( int64 cache_id, std::set<int64>* response_ids) argument
H A Dappcache_group.cc138 std::vector<int64>* response_ids) {
140 storage_->DeleteResponses(manifest_url_, *response_ids);
141 response_ids->clear();
146 newly_deletable_response_ids_.swap(*response_ids);
151 response_ids->begin(), response_ids->end());
152 response_ids->clear();
137 AddNewlyDeletableResponseIds( std::vector<int64>* response_ids) argument
H A Dmock_appcache_storage.cc169 const GURL& manifest_url, const std::vector<int64>& response_ids) {
170 DeleteResponses(manifest_url, response_ids);
174 const GURL& manifest_url, const std::vector<int64>& response_ids) {
177 std::vector<int64>::const_iterator it = response_ids.begin();
178 while (it != response_ids.end()) {
168 DoomResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
173 DeleteResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
H A Dappcache_database.cc827 std::vector<int64>* response_ids, int64 max_rowid, int limit) {
841 response_ids->push_back(statement.ColumnInt64(0));
846 const std::vector<int64>& response_ids) {
849 return RunCachedStatementWithIds(SQL_FROM_HERE, kSql, response_ids);
853 const std::vector<int64>& response_ids) {
856 return RunCachedStatementWithIds(SQL_FROM_HERE, kSql, response_ids);
826 GetDeletableResponseIds( std::vector<int64>* response_ids, int64 max_rowid, int limit) argument
845 InsertDeletableResponseIds( const std::vector<int64>& response_ids) argument
852 DeleteDeletableResponseIds( const std::vector<int64>& response_ids) argument
H A Dappcache_storage_impl.cc1647 const GURL& manifest_url, const std::vector<int64>& response_ids) {
1648 if (response_ids.empty())
1652 StartDeletingResponses(response_ids);
1661 task->response_ids_ = response_ids;
1666 const GURL& manifest_url, const std::vector<int64>& response_ids) {
1667 if (response_ids.empty())
1669 StartDeletingResponses(response_ids);
1682 const std::vector<int64>& response_ids) {
1683 DCHECK(!response_ids.empty());
1687 response_ids
1646 DoomResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
1665 DeleteResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
1681 StartDeletingResponses( const std::vector<int64>& response_ids) argument
[all...]

Completed in 3129 milliseconds