Searched refs:backingStore (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/leveldb/
H A DIDBIndexWriterLevelDB.cpp44 void IDBIndexWriterLevelDB::writeIndexKeys(const IDBRecordIdentifier* recordIdentifier, IDBBackingStoreLevelDB& backingStore, IDBBackingStoreTransactionLevelDB& transaction, int64_t databaseId, int64_t objectStoreId) const argument
49 bool ok = backingStore.putIndexDataForRecord(transaction, databaseId, objectStoreId, indexId, *(m_indexKeys)[i].get(), recordIdentifier);
55 bool IDBIndexWriterLevelDB::verifyIndexKeys(IDBBackingStoreLevelDB& backingStore, IDBBackingStoreTransactionLevelDB& transaction, int64_t databaseId, int64_t objectStoreId, int64_t indexId, bool& canAddKeys, const IDBKey* primaryKey, String* errorMessage) const argument
59 bool ok = addingKeyAllowed(backingStore, transaction, databaseId, objectStoreId, indexId, (m_indexKeys)[i].get(), primaryKey, canAddKeys);
72 bool IDBIndexWriterLevelDB::addingKeyAllowed(IDBBackingStoreLevelDB& backingStore, IDBBackingStoreTransactionLevelDB& transaction, int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKey* indexKey, const IDBKey* primaryKey, bool& allowed) const argument
82 bool ok = backingStore.keyExistsInIndex(transaction, databaseId, objectStoreId, indexId, *indexKey, foundPrimaryKey, found);
H A DIDBFactoryBackendLevelDB.cpp90 RefPtr<IDBBackingStoreLevelDB> backingStore = openBackingStore(openingOrigin, dataDirectory); local
91 if (!backingStore) {
98 Vector<String> foundNames = backingStore->getDatabaseNames();
119 RefPtr<IDBBackingStoreLevelDB> backingStore = openBackingStore(openingOrigin, dataDirectory); local
120 if (!backingStore) {
125 RefPtr<IDBServerConnection> serverConnection = IDBServerConnectionLevelDB::create(name, backingStore.get());
144 RefPtr<IDBBackingStoreLevelDB> backingStore;
146 backingStore = IDBBackingStoreLevelDB::openInMemory(fileIdentifier);
148 backingStore = IDBBackingStoreLevelDB::open(securityOrigin, dataDirectory, fileIdentifier);
150 if (backingStore) {
174 RefPtr<IDBBackingStoreLevelDB> backingStore = openBackingStore(openingOrigin, m_databaseDirectory); local
[all...]
H A DIDBBackingStoreTransactionLevelDB.cpp37 IDBBackingStoreTransactionLevelDB::IDBBackingStoreTransactionLevelDB(int64_t transactionID, IDBBackingStoreLevelDB* backingStore) argument
39 , m_backingStore(backingStore)
H A DIDBBackingStoreTransactionLevelDB.h40 static PassRefPtr<IDBBackingStoreTransactionLevelDB> create(int64_t transactionID, IDBBackingStoreLevelDB* backingStore) argument
42 return adoptRef(new IDBBackingStoreTransactionLevelDB(transactionID, backingStore));
H A DIDBServerConnectionLevelDB.h42 static PassRefPtr<IDBServerConnection> create(const String& databaseName, IDBBackingStoreLevelDB* backingStore) argument
44 return adoptRef(new IDBServerConnectionLevelDB(databaseName, backingStore));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DRemoteLayerTreeContext.mm84 void RemoteLayerTreeContext::backingStoreWasCreated(RemoteLayerBackingStore& backingStore)
86 m_backingStoreCollection.backingStoreWasCreated(backingStore);
89 void RemoteLayerTreeContext::backingStoreWillBeDestroyed(RemoteLayerBackingStore& backingStore)
91 m_backingStoreCollection.backingStoreWillBeDestroyed(backingStore);
94 void RemoteLayerTreeContext::backingStoreWillBeDisplayed(RemoteLayerBackingStore& backingStore)
96 m_backingStoreCollection.backingStoreWillBeDisplayed(backingStore);
H A DPlatformCALayerRemote.cpp144 ASSERT(!m_properties.backingStore || owner());
147 if (m_properties.backingStore && (!owner() || !owner()->platformCALayerDrawsContent())) {
148 m_properties.backingStore = nullptr;
152 if (m_properties.backingStore && m_properties.backingStore->display())
192 if (!m_properties.backingStore)
193 m_properties.backingStore = std::make_unique<RemoteLayerBackingStore>(this);
200 if (!m_properties.backingStore)
203 m_properties.backingStore->ensureBackingStore(m_properties.bounds.size(), m_properties.contentsScale, m_acceleratesDrawing, m_properties.opaque);
211 m_properties.backingStore
[all...]
H A DRemoteLayerTreeDrawingArea.mm351 if (layer->properties().backingStore) {
352 if (auto contextPendingFlush = layer->properties().backingStore->takeFrontContextPendingFlush())
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DTileCairo.h45 static PassRefPtr<Tile> create(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) argument
47 return adoptRef(new TileCairo(backingStore, tileCoordinate));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsScene.cpp392 RefPtr<CoordinatedBackingStore> backingStore(CoordinatedBackingStore::create());
393 m_backingStores.add(layer, backingStore);
394 layer->setBackingStore(backingStore);
399 RefPtr<CoordinatedBackingStore> backingStore = m_backingStores.take(layer); local
400 if (!backingStore)
408 RefPtr<CoordinatedBackingStore> backingStore = m_backingStores.get(layer); local
409 ASSERT(backingStore);
410 backingStore->setSize(layer->size());
411 m_backingStoresWithPendingBuffers.add(backingStore);
419 RefPtr<CoordinatedBackingStore> backingStore
508 RefPtr<CoordinatedBackingStore> backingStore = it->value; local
525 RefPtr<CoordinatedBackingStore> backingStore = it->value; local
[all...]
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/sqlite/
H A DSQLiteIDBTransaction.h59 static std::unique_ptr<SQLiteIDBTransaction> create(UniqueIDBDatabaseBackingStoreSQLite& backingStore, const IDBIdentifier& transactionIdentifier, WebCore::IndexedDB::TransactionMode mode) argument
61 return std::unique_ptr<SQLiteIDBTransaction>(new SQLiteIDBTransaction(backingStore, transactionIdentifier, mode));
H A DSQLiteIDBTransaction.cpp41 SQLiteIDBTransaction::SQLiteIDBTransaction(UniqueIDBDatabaseBackingStoreSQLite& backingStore, const IDBIdentifier& transactionIdentifier, IndexedDB::TransactionMode mode) argument
44 , m_backingStore(backingStore)
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestBase.h35 Ecore_Evas* backingStore() { return m_ecoreEvas; } function in class:EWK2UnitTest::EWK2UnitTestBase
/macosx-10.10/WebCore-7600.1.25/platform/network/gtk/
H A DCredentialBackingStore.cpp45 DEPRECATED_DEFINE_STATIC_LOCAL(CredentialBackingStore, backingStore, ());
46 return backingStore;
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DRemoteLayerTreeTransaction.mm232 bool hasFrontBuffer = backingStore && backingStore->hasFrontBuffer();
235 encoder << *backingStore;
405 std::unique_ptr<RemoteLayerBackingStore> backingStore = std::make_unique<RemoteLayerBackingStore>(nullptr);
406 if (!decoder.decode(*backingStore))
409 result.backingStore = WTF::move(backingStore);
411 result.backingStore = nullptr;
981 RemoteLayerTreeTextStream& RemoteLayerTreeTextStream::operator<<(const RemoteLayerBackingStore& backingStore)
984 ts << backingStore
[all...]
H A DRemoteLayerTreePropertyApplier.mm209 if (RemoteLayerBackingStore* backingStore = properties.backingStore.get())
210 backingStore->applyBackingStoreToLayer(layer);
H A DRemoteLayerTreeTransaction.h133 std::unique_ptr<RemoteLayerBackingStore> backingStore; member in struct:WebKit::RemoteLayerTreeTransaction::LayerProperties
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/
H A Dtest_ewk2_context.cpp149 Evas* evas = ecore_evas_get(backingStore());
168 Evas* evas = ecore_evas_get(backingStore());
187 Evas* evas = ecore_evas_get(backingStore());
210 Evas* evas = ecore_evas_get(backingStore());
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DArguments.h206 void* backingStore; local
207 if (!vm.heap.tryAllocateStorage(this, SlowArgumentData::sizeForNumArguments(m_numArguments), &backingStore))
209 m_slowArgumentData.set(vm, this, static_cast<SlowArgumentData*>(backingStore));
H A DArguments.cpp369 void* backingStore; local
370 if (!vm.heap.tryAllocateStorage(this, registerArraySizeInBytes(), &backingStore))
372 m_registerArray.set(vm, this, static_cast<WriteBarrier<Unknown>*>(backingStore));
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWUserPseudoAddressSpace.cpp470 if ( NULL != params->backingStore )
476 fDesc = IOMemoryDescriptor::withAddressRange( params->backingStore,
499 if (params->backingStore)
517 if (params->backingStore)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp610 TextureMapperTiledBackingStore* backingStore = static_cast<TextureMapperTiledBackingStore*>(m_backingStore.get());
612 backingStore->updateContents(textureMapper, this, m_size, dirtyRect, BitmapTexture::UpdateCanModifyOriginalImageData);
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibPriv.h388 mach_vm_address_t backingStore ; member in struct:IOFireWireLib::AddressSpaceCreateParams
412 // void* backingStore ;
/macosx-10.10/dtrace-147/libproc/
H A Dlibproc.c916 char backingStore[256];
917 char* className = (symbolNameLength < sizeof(backingStore)) ? backingStore : malloc(symbolNameLength);
935 if (className != backingStore)
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebViewPrivate.idl150 HRESULT backingStore([out, retval] HBITMAP* hBitmap);

Completed in 363 milliseconds

12