Home | History | Annotate | Download | only in indexeddb

Lines Matching defs:objectStore

139 PassRefPtr<IDBObjectStore> IDBTransaction::objectStore(const String& name, ExceptionState& es)
164 RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(metadata.objectStores.get(objectStoreId), this);
165 objectStoreCreated(name, objectStore);
166 return objectStore.release();
172 RefPtr<IDBObjectStore> objectStore = prpObjectStore;
173 m_objectStoreMap.set(name, objectStore);
175 m_objectStoreCleanupMap.set(objectStore, objectStore->metadata());
184 RefPtr<IDBObjectStore> objectStore = it->value;
186 objectStore->markDeleted();
187 m_objectStoreCleanupMap.set(objectStore, objectStore->metadata());
188 m_deletedObjectStores.add(objectStore);