Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/storage/
DIDBSQLiteBackingStore.h43 …virtual void getObjectStores(int64_t databaseId, Vector<int64_t>& foundIds, Vector<String>& foundN…
44 …virtual bool createObjectStore(int64_t databaseId, const String& name, const String& keyPath, bool…
45 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId);
47 virtual String getObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&);
48 …virtual bool putObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&, const …
49 virtual void clearObjectStore(int64_t databaseId, int64_t objectStoreId);
50 …virtual void deleteObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const ObjectStoreR…
51 virtual double nextAutoIncrementNumber(int64_t databaseId, int64_t objectStoreId);
52 …virtual bool keyExistsInObjectStore(int64_t databaseId, int64_t objectStoreId, const IDBKey&, Obje…
54 …virtual bool forEachObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, ObjectStoreRecord…
[all …]
DIDBLevelDBBackingStore.h48 …virtual void getObjectStores(int64_t databaseId, Vector<int64_t>& foundIds, Vector<String>& foundN…
49 …virtual bool createObjectStore(int64_t databaseId, const String& name, const String& keyPath, bool…
50 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId);
52 virtual String getObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&);
53 …virtual bool putObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&, const …
54 virtual void clearObjectStore(int64_t databaseId, int64_t objectStoreId);
55 …virtual void deleteObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const ObjectStoreR…
56 virtual double nextAutoIncrementNumber(int64_t databaseId, int64_t objectStoreId);
57 …virtual bool keyExistsInObjectStore(int64_t databaseId, int64_t objectStoreId, const IDBKey&, Obje…
59 …virtual bool forEachObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, ObjectStoreRecord…
[all …]
DIDBBackingStore.h52 …virtual void getObjectStores(int64_t databaseId, Vector<int64_t>& foundIds, Vector<String>& foundN…
53 …virtual bool createObjectStore(int64_t databaseId, const String& name, const String& keyPath, bool…
54 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId) = 0;
63 … virtual String getObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&) = 0;
64 …virtual bool putObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const IDBKey&, const …
65 virtual void clearObjectStore(int64_t databaseId, int64_t objectStoreId) = 0;
66 …virtual void deleteObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, const ObjectStoreR…
67 virtual double nextAutoIncrementNumber(int64_t databaseId, int64_t objectStoreId) = 0;
68 …virtual bool keyExistsInObjectStore(int64_t databaseId, int64_t objectStoreId, const IDBKey&, Obje…
75 …virtual bool forEachObjectStoreRecord(int64_t databaseId, int64_t objectStoreId, ObjectStoreRecord…
[all …]
DIDBLevelDBBackingStore.cpp509 KeyPrefix(int64_t databaseId, int64_t objectStoreId, int64_t indexId) in KeyPrefix() argument
510 : m_databaseId(databaseId) in KeyPrefix()
664 static Vector<char> encode(int64_t databaseId) in encode() argument
669 ret.append(encodeVarInt(databaseId)); in encode()
673 int64_t databaseId() const in databaseId() function in WebCore::__anon61466e600111::DatabaseFreeListKey
746 static Vector<char> encode(int64_t databaseId, MetaDataType metaDataType) in encode() argument
748 KeyPrefix prefix(databaseId, 0, 0); in encode()
787 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, int64_t metaDataType) in encode() argument
789 KeyPrefix prefix(databaseId, 0, 0); in encode()
858 …static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, int64_t indexId, unsigned ch… in encode() argument
[all …]
DIDBIndexBackendImpl.h43 …static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, c… in create() argument
45 …return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, id, name, st… in create()
47 …static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, c… in create() argument
49 …return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, name, storeN… in create()
75 …IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, int64_…
76 …IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, const …
DIDBObjectStoreBackendImpl.h45 …BObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, con… in create() argument
47 …return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, id, name, keyPath, autoInc… in create()
49 …BObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const String& n… in create() argument
51 …return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, name, keyPath, autoIncreme… in create()
62 int64_t databaseId() const { return m_databaseId; } in databaseId() function
81 …IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, int64_t id, const String& name, co…
82 …IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, const String& name, const String& …
DIDBIndexBackendImpl.cpp43 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const I… in IDBIndexBackendImpl() argument
45 , m_databaseId(databaseId) in IDBIndexBackendImpl()
55 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const I… in IDBIndexBackendImpl() argument
57 , m_databaseId(databaseId) in IDBIndexBackendImpl()
DIDBObjectStoreBackendImpl.cpp53 …Impl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, con… in IDBObjectStoreBackendImpl() argument
55 , m_databaseId(databaseId) in IDBObjectStoreBackendImpl()
65 …Impl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const String& n… in IDBObjectStoreBackendImpl() argument
67 , m_databaseId(databaseId) in IDBObjectStoreBackendImpl()
330 …ack(IDBBackingStore& backingStore, const String& indexKeyPath, int64_t databaseId, int64_t objectS… in PopulateIndexCallback() argument
333 , m_databaseId(databaseId) in PopulateIndexCallback()
361 static bool populateIndex(IDBBackingStore& backingStore, int64_t databaseId, int64_t objectStoreId,… in populateIndex() argument
363 PopulateIndexCallback callback(backingStore, indexKeyPath, databaseId, objectStoreId, indexId); in populateIndex()
364 if (!backingStore.forEachObjectStoreRecord(databaseId, objectStoreId, callback)) in populateIndex()
DIDBDatabaseBackendImpl.cpp195 int64_t databaseId = database->id(); in setVersionInternal() local
197 …e->setIDBDatabaseMetaData(database->m_name, database->m_version, databaseId, databaseId == Invalid… in setVersionInternal()
DIDBSQLiteBackingStore.cpp245 void IDBSQLiteBackingStore::getObjectStores(int64_t databaseId, Vector<int64_t>& foundIds, Vector<S… in getObjectStores() argument
256 query.bindInt64(1, databaseId); in getObjectStores()
266 bool IDBSQLiteBackingStore::createObjectStore(int64_t databaseId, const String& name, const String&… in createObjectStore() argument
275 query.bindInt64(4, databaseId); in createObjectStore()
/external/webkit/Source/WebCore/inspector/
DInspectorDatabaseAgent.h66 void getDatabaseTableNames(ErrorString*, int databaseId, RefPtr<InspectorArray>* names);
67 …void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transaction…
70 int databaseId(Database*);
76 Database* databaseForId(int databaseId);
DInspectorDatabaseAgent.cpp295 void InspectorDatabaseAgent::getDatabaseTableNames(ErrorString* error, int databaseId, RefPtr<Inspe… in getDatabaseTableNames() argument
302 Database* database = databaseForId(databaseId); in getDatabaseTableNames()
311 void InspectorDatabaseAgent::executeSQL(ErrorString* error, int databaseId, const String& query, bo… in executeSQL() argument
318 Database* database = databaseForId(databaseId); in executeSQL()
332 int InspectorDatabaseAgent::databaseId(Database* database) in databaseId() function in WebCore::InspectorDatabaseAgent
350 Database* InspectorDatabaseAgent::databaseForId(int databaseId) in databaseForId() argument
352 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); in databaseForId()
DInjectedScriptSource.js79 var databaseId = InjectedScriptHost.databaseId(object)
80 if (databaseId)
81 hints.databaseId = databaseId;
DInjectedScriptHost.cpp149 return m_databaseAgent->databaseId(database); in databaseIdImpl()
DInjectedScriptHost.idl43 [Custom] int databaseId(in DOMObject database);
/external/webkit/Source/WebCore/bindings/js/
DJSInjectedScriptHostCustom.cpp124 JSValue JSInjectedScriptHost::databaseId(ExecState* exec) in databaseId() function in WebCore::JSInjectedScriptHost
/external/webkit/Source/WebCore/inspector/front-end/
DResourcesPanel.js322 selectDatabase: function(databaseId) argument
327 if (database.id === databaseId) {
Dinspector.js1168 if (hints.databaseId) {
1170 WebInspector.panels.resources.selectDatabase(hints.databaseId);
/external/webkit/Source/WebCore/
DChangeLog9606 (WebCore::IDBLevelDBCoding::DatabaseFreeListKey::databaseId):
9654 (WebCore::IDBLevelDBCoding::IndexDataKey::databaseId):
17905 (WebCore::KeyPrefix::DatabaseFreeListKey::databaseId):
17958 (WebCore::KeyPrefix::IndexDataKey::databaseId):
25109 (WebCore::IDBObjectStoreBackendImpl::databaseId):
41400 (WebCore::InspectorDatabaseAgent::databaseId):
60633 (WebCore::JSInjectedScriptHost::databaseId):
60666 (WebCore::InspectorDatabaseAgent::databaseId):