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

/external/chromium_org/webkit/browser/appcache/
H A Dappcache_database.h127 int64 cache_id, std::vector<int64>* response_ids) {
128 return FindResponseIdsForCacheHelper(cache_id, response_ids, NULL);
131 int64 cache_id, std::set<int64>* response_ids) {
132 return FindResponseIdsForCacheHelper(cache_id, NULL, response_ids);
155 bool GetDeletableResponseIds(std::vector<int64>* response_ids,
157 bool InsertDeletableResponseIds(const std::vector<int64>& response_ids);
158 bool DeleteDeletableResponseIds(const std::vector<int64>& response_ids);
126 FindResponseIdsForCacheAsVector( int64 cache_id, std::vector<int64>* response_ids) argument
130 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.cc166 const GURL& manifest_url, const std::vector<int64>& response_ids) {
167 DeleteResponses(manifest_url, response_ids);
171 const GURL& manifest_url, const std::vector<int64>& response_ids) {
174 std::vector<int64>::const_iterator it = response_ids.begin();
175 while (it != response_ids.end()) {
165 DoomResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
170 DeleteResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
H A Dappcache_database.cc823 std::vector<int64>* response_ids, int64 max_rowid, int limit) {
837 response_ids->push_back(statement.ColumnInt64(0));
842 const std::vector<int64>& response_ids) {
845 return RunCachedStatementWithIds(SQL_FROM_HERE, kSql, response_ids);
849 const std::vector<int64>& response_ids) {
852 return RunCachedStatementWithIds(SQL_FROM_HERE, kSql, response_ids);
822 GetDeletableResponseIds( std::vector<int64>* response_ids, int64 max_rowid, int limit) argument
841 InsertDeletableResponseIds( const std::vector<int64>& response_ids) argument
848 DeleteDeletableResponseIds( const std::vector<int64>& response_ids) argument
H A Dappcache_storage_impl.cc1616 const GURL& manifest_url, const std::vector<int64>& response_ids) {
1617 if (response_ids.empty())
1621 StartDeletingResponses(response_ids);
1630 task->response_ids_ = response_ids;
1635 const GURL& manifest_url, const std::vector<int64>& response_ids) {
1636 if (response_ids.empty())
1638 StartDeletingResponses(response_ids);
1656 const std::vector<int64>& response_ids) {
1657 DCHECK(!response_ids.empty());
1661 response_ids
1615 DoomResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
1634 DeleteResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) argument
1655 StartDeletingResponses( const std::vector<int64>& response_ids) argument
[all...]

Completed in 74 milliseconds