Home | History | Annotate | Download | only in storage

Lines Matching full:uniqueidentifier

55 void IDBFactoryBackendImpl::removeIDBDatabaseBackend(const String& uniqueIdentifier)
57 ASSERT(m_databaseBackendMap.contains(uniqueIdentifier));
58 m_databaseBackendMap.remove(uniqueIdentifier);
61 void IDBFactoryBackendImpl::addIDBBackingStore(const String& uniqueIdentifier, IDBBackingStore* backingStore)
63 ASSERT(!m_backingStoreMap.contains(uniqueIdentifier));
64 m_backingStoreMap.set(uniqueIdentifier, backingStore);
67 void IDBFactoryBackendImpl::removeIDBBackingStore(const String& uniqueIdentifier)
69 ASSERT(m_backingStoreMap.contains(uniqueIdentifier));
70 m_backingStoreMap.remove(uniqueIdentifier);
76 String uniqueIdentifier = fileIdentifier + "@" + name;
77 IDBDatabaseBackendMap::iterator it = m_databaseBackendMap.find(uniqueIdentifier);
102 RefPtr<IDBDatabaseBackendImpl> databaseBackend = IDBDatabaseBackendImpl::create(name, backingStore.get(), m_transactionCoordinator.get(), this, uniqueIdentifier);
104 m_databaseBackendMap.set(uniqueIdentifier, databaseBackend.get());