Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/loader/appcache/
DApplicationCacheStorage.cpp1184 SQLiteStatement groupStatement(m_database, "DELETE FROM CacheGroups WHERE id=?"); in remove() local
1185 if (groupStatement.prepare() != SQLResultOk) in remove()
1188 groupStatement.bindInt64(1, cache->group()->storageID()); in remove()
1189 executeStatement(groupStatement); in remove()
1375 SQLiteStatement groupStatement(m_database, "DELETE FROM CacheGroups WHERE id=?"); in deleteCacheGroup() local
1376 if (groupStatement.prepare() != SQLResultOk) in deleteCacheGroup()
1381 groupStatement.bindInt64(1, groupId); in deleteCacheGroup()
1382 executeStatement(groupStatement); in deleteCacheGroup()