Home
last modified time | relevance | path

Searched refs:resourceStatement (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/loader/appcache/
DApplicationCacheStorage.cpp644 …SQLiteStatement resourceStatement(m_database, "INSERT INTO CacheResources (url, statusCode, respon… in store() local
645 if (resourceStatement.prepare() != SQLResultOk) in store()
651 resourceStatement.bindText(1, resource->url()); in store()
652 resourceStatement.bindInt64(2, resource->response().httpStatusCode()); in store()
653 resourceStatement.bindText(3, resource->response().url()); in store()
654 resourceStatement.bindText(4, headers); in store()
655 resourceStatement.bindInt64(5, dataId); in store()
656 resourceStatement.bindText(6, resource->response().mimeType()); in store()
657 resourceStatement.bindText(7, resource->response().textEncodingName()); in store()
659 if (!executeStatement(resourceStatement)) in store()