• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/sqlite/

Lines Matching refs:transactionIdentifier

333 bool UniqueIDBDatabaseBackingStoreSQLite::establishTransaction(const IDBIdentifier& transactionIdentifier, const Vector<int64_t>&, IndexedDB::TransactionMode mode)
337 if (!m_transactions.add(transactionIdentifier, SQLiteIDBTransaction::create(*this, transactionIdentifier, mode)).isNewEntry) {
345 bool UniqueIDBDatabaseBackingStoreSQLite::beginTransaction(const IDBIdentifier& transactionIdentifier)
349 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
358 bool UniqueIDBDatabaseBackingStoreSQLite::commitTransaction(const IDBIdentifier& transactionIdentifier)
362 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
371 bool UniqueIDBDatabaseBackingStoreSQLite::resetTransaction(const IDBIdentifier& transactionIdentifier)
375 std::unique_ptr<SQLiteIDBTransaction> transaction = m_transactions.take(transactionIdentifier);
384 bool UniqueIDBDatabaseBackingStoreSQLite::rollbackTransaction(const IDBIdentifier& transactionIdentifier)
388 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
402 bool UniqueIDBDatabaseBackingStoreSQLite::changeDatabaseVersion(const IDBIdentifier& transactionIdentifier, uint64_t newVersion)
408 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
431 bool UniqueIDBDatabaseBackingStoreSQLite::createObjectStore(const IDBIdentifier& transactionIdentifier, const IDBObjectStoreMetadata& metadata)
437 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
480 bool UniqueIDBDatabaseBackingStoreSQLite::deleteObjectStore(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID)
486 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
554 bool UniqueIDBDatabaseBackingStoreSQLite::clearObjectStore(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID)
560 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
593 bool UniqueIDBDatabaseBackingStoreSQLite::createIndex(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBIndexMetadata& metadata)
599 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
675 bool UniqueIDBDatabaseBackingStoreSQLite::deleteIndex(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t indexID)
681 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
716 bool UniqueIDBDatabaseBackingStoreSQLite::generateKeyNumber(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t& generatedKey)
725 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
759 bool UniqueIDBDatabaseBackingStoreSQLite::updateKeyGeneratorNumber(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t keyNumber, bool)
765 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
789 bool UniqueIDBDatabaseBackingStoreSQLite::keyExistsInObjectStore(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBKeyData& keyData, bool& keyExists)
797 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
833 bool UniqueIDBDatabaseBackingStoreSQLite::putRecord(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBKeyData& keyData, const uint8_t* valueBuffer, size_t valueSize)
839 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
869 bool UniqueIDBDatabaseBackingStoreSQLite::putIndexRecord(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t indexID, const IDBKeyData& keyValue, const IDBKeyData& indexKey)
875 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
917 bool UniqueIDBDatabaseBackingStoreSQLite::getIndexRecord(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t indexID, const IDBKeyRangeData& keyRangeData, IndexedDB::CursorType cursorType, IDBGetResult& result)
923 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
952 bool UniqueIDBDatabaseBackingStoreSQLite::deleteRecord(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const WebCore::IDBKeyData& keyData)
958 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
972 bool UniqueIDBDatabaseBackingStoreSQLite::deleteRange(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBKeyRangeData& keyRangeData)
978 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
1074 bool UniqueIDBDatabaseBackingStoreSQLite::getKeyRecordFromObjectStore(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBKey& key, RefPtr<SharedBuffer>& result)
1080 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
1120 bool UniqueIDBDatabaseBackingStoreSQLite::getKeyRangeRecordFromObjectStore(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, const IDBKeyRange& keyRange, RefPtr<SharedBuffer>& result, RefPtr<IDBKey>& resultKey)
1126 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
1174 bool UniqueIDBDatabaseBackingStoreSQLite::count(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t indexID, const IDBKeyRangeData& keyRangeData, int64_t& count)
1180 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
1204 bool UniqueIDBDatabaseBackingStoreSQLite::openCursor(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID, int64_t indexID, IndexedDB::CursorDirection cursorDirection, IndexedDB::CursorType cursorType, IDBDatabaseBackend::TaskType taskType, const IDBKeyRangeData& keyRange, int64_t& cursorID, IDBKeyData& key, IDBKeyData& primaryKey, Vector<uint8_t>& valueBuffer)
1210 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);
1285 void UniqueIDBDatabaseBackingStoreSQLite::notifyCursorsOfChanges(const IDBIdentifier& transactionIdentifier, int64_t objectStoreID)
1291 SQLiteIDBTransaction* transaction = m_transactions.get(transactionIdentifier);