Searched refs:resourceStatement (Results 1 – 1 of 1) sorted by relevance
/external/webkit/Source/WebCore/loader/appcache/ |
D | ApplicationCacheStorage.cpp | 843 …SQLiteStatement resourceStatement(m_database, "INSERT INTO CacheResources (url, statusCode, respon… in store() local 844 if (resourceStatement.prepare() != SQLResultOk) in store() 850 resourceStatement.bindText(1, resource->url()); in store() 851 resourceStatement.bindInt64(2, resource->response().httpStatusCode()); in store() 852 resourceStatement.bindText(3, resource->response().url()); in store() 853 resourceStatement.bindText(4, headers); in store() 854 resourceStatement.bindInt64(5, dataId); in store() 855 resourceStatement.bindText(6, resource->response().mimeType()); in store() 856 resourceStatement.bindText(7, resource->response().textEncodingName()); in store() 858 if (!executeStatement(resourceStatement)) in store()
|