HomeSort by relevance Sort by last modified time
    Searched defs:objectStoreId (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendImpl.cpp 126 int64_t objectStoreId;
128 if (!database->m_backingStore->createObjectStore(database->id(), objectStore->name(), objectStore->keyPath(), objectStore->autoIncrement(), objectStoreId)) {
133 objectStore->setId(objectStoreId);
IDBLevelDBBackingStore.cpp 509 KeyPrefix(int64_t databaseId, int64_t objectStoreId, int64_t indexId)
511 , m_objectStoreId(objectStoreId)
787 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, int64_t metaDataType)
792 ret.append(encodeVarInt(objectStoreId));
797 int64_t objectStoreId() const
858 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId, int64_t indexId, unsigned char metaDataType)
863 ret.append(encodeVarInt(objectStoreId));
920 static Vector<char> encode(int64_t databaseId, int64_t objectStoreId)
925 ret.append(encodeVarInt(objectStoreId));
929 int64_t objectStoreId() cons
    [all...]

Completed in 106 milliseconds