Searched refs:storageArea (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageEvent.cpp51 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
53 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
61 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
67 , m_storageArea(storageArea)
77 , m_storageArea(initializer.storageArea)
81 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
92 m_storageArea = storageArea;
H A DStorageEvent.h43 RefPtr<Storage> storageArea; member in struct:WebCore::StorageEventInit
49 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
57 Storage* storageArea() const { return m_storageArea.get(); } function in class:WebCore::StorageEvent
59 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
68 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
H A DStorageNamespaceImpl.cpp123 PassRefPtr<StorageArea> StorageNamespaceImpl::storageArea(PassRefPtr<SecurityOrigin> prpOrigin) function in class:WebCore::StorageNamespaceImpl
129 RefPtr<StorageAreaImpl> storageArea; local
130 if ((storageArea = m_storageAreaMap.get(origin)))
131 return storageArea.release();
133 storageArea = StorageAreaImpl::create(m_storageType, origin, m_syncManager, m_quota);
134 m_storageAreaMap.set(origin.release(), storageArea);
135 return storageArea.release();
165 RefPtr<StorageAreaImpl> storageArea = m_storageAreaMap.get(origin); local
166 if (storageArea)
167 storageArea
[all...]
H A DStorage.cpp41 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea) argument
43 return adoptRef(new Storage(frame, storageArea));
46 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea) argument
48 , m_storageArea(storageArea)
H A DStorageNamespace.h47 virtual PassRefPtr<StorageArea> storageArea(PassRefPtr<SecurityOrigin>) = 0;
H A DStorageEvent.idl33 [InitializedByEventConstructor] readonly attribute Storage storageArea;
H A DStorageNamespaceImpl.h47 virtual PassRefPtr<StorageArea> storageArea(PassRefPtr<SecurityOrigin>) override;
H A DStorageAreaSync.cpp55 inline StorageAreaSync::StorageAreaSync(PassRefPtr<StorageSyncManager> storageSyncManager, PassRefPtr<StorageAreaImpl> storageArea, const String& databaseIdentifier) argument
59 , m_storageArea(storageArea)
78 PassRefPtr<StorageAreaSync> StorageAreaSync::create(PassRefPtr<StorageSyncManager> storageSyncManager, PassRefPtr<StorageAreaImpl> storageArea, const String& databaseIdentifier) argument
80 RefPtr<StorageAreaSync> area = adoptRef(new StorageAreaSync(storageSyncManager, storageArea, databaseIdentifier));
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorDOMStorageAgent.cpp100 RefPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame); local
101 if (!storageArea) {
109 for (unsigned i = 0; i < storageArea->length(); ++i) {
110 String key = storageArea->key(i);
111 String value = storageArea->item(key);
125 RefPtr<StorageArea> storageArea = findStorageArea(nullptr, storageId, frame); local
126 if (!storageArea) {
132 storageArea->setItem(frame, key, value, quotaException);
140 RefPtr<StorageArea> storageArea = findStorageArea(nullptr, storageId, frame); local
141 if (!storageArea) {
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Storage/
H A DStorageManager.cpp150 RefPtr<StorageArea> storageArea = StorageArea::create(0, m_securityOrigin, m_quotaInBytes); local
151 storageArea->m_storageMap = m_storageMap;
153 return storageArea.release();
278 RefPtr<StorageArea> storageArea = StorageArea::create(this, result.iterator->key, m_quotaInBytes);
279 result.iterator->value = storageArea.get();
281 return storageArea.release();
284 void StorageManager::LocalStorageNamespace::didDestroyStorageArea(StorageArea* storageArea) argument
286 ASSERT(m_storageAreaMap.contains(storageArea->securityOrigin()));
288 m_storageAreaMap.remove(storageArea->securityOrigin());
459 RefPtr<StorageArea> storageArea local
489 RefPtr<StorageArea> storageArea = sessionStorageNamespace->getOrCreateStorageArea(securityOriginData.securityOrigin()); local
514 StorageArea* storageArea = findStorageArea(connection, storageMapID); local
526 StorageArea* storageArea = findStorageArea(connection, storageMapID); local
539 StorageArea* storageArea = findStorageArea(connection, storageMapID); local
551 StorageArea* storageArea = findStorageArea(connection, storageMapID); local
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Storage/
H A DStorageNamespaceImpl.h52 virtual PassRefPtr<WebCore::StorageArea> storageArea(PassRefPtr<WebCore::SecurityOrigin>) override;
H A DStorageAreaMap.cpp325 StorageAreaImpl& storageArea = static_cast<StorageAreaImpl&>(storage->area()); local
326 if (storageArea.storageAreaID() == sourceStorageAreaID) {
355 StorageAreaImpl& storageArea = static_cast<StorageAreaImpl&>(storage->area()); local
356 if (storageArea.storageAreaID() == sourceStorageAreaID) {
H A DStorageNamespaceImpl.cpp87 PassRefPtr<StorageArea> StorageNamespaceImpl::storageArea(PassRefPtr<SecurityOrigin> securityOrigin) function in class:WebKit::StorageNamespaceImpl
/macosx-10.10/WebCore-7600.1.25/page/
H A DDOMWindow.cpp811 RefPtr<StorageArea> storageArea = page->sessionStorage()->storageArea(document->securityOrigin());
812 if (!storageArea->canAccessStorage(m_frame)) {
817 m_sessionStorage = Storage::create(m_frame, storageArea.release());
857 RefPtr<StorageArea> storageArea;
859 storageArea = page->group().transientLocalStorage(document->topOrigin())->storageArea(document->securityOrigin());
861 storageArea = page->group().localStorage()->storageArea(document->securityOrigin());
863 if (!storageArea
[all...]

Completed in 74 milliseconds