Searched refs:quotaException (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageMap.cpp102 PassRefPtr<StorageMap> StorageMap::setItem(const String& key, const String& value, String& oldValue, bool& quotaException) argument
105 quotaException = false;
111 newStorageMap->setItem(key, value, oldValue, quotaException);
131 quotaException = true;
150 bool quotaException; local
152 RefPtr<StorageMap> map = setItem(key, value, oldValue, quotaException);
153 ASSERT(!quotaException);
H A DStorage.cpp113 bool quotaException = false; local
114 m_storageArea->setItem(m_frame, key, value, quotaException);
116 if (quotaException)
H A DStorageArea.h48 virtual void setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) = 0;
H A DStorageMap.h45 PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quotaException);
H A DStorageAreaImpl.h50 virtual void setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) override;
H A DStorageAreaImpl.cpp141 void StorageAreaImpl::setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) argument
148 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException);
152 if (quotaException)
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Storage/
H A DStorageAreaImpl.cpp77 void StorageAreaImpl::setItem(Frame* sourceFrame, const String& key, const String& value, bool& quotaException) argument
81 m_storageAreaMap->setItem(sourceFrame, this, key, value, quotaException);
H A DStorageAreaImpl.h52 virtual void setItem(WebCore::Frame* sourceFrame, const String& key, const String& value, bool& quotaException) override;
H A DStorageAreaMap.cpp105 void StorageAreaMap::setItem(Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key, const String& value, bool& quotaException) argument
112 quotaException = false;
113 m_storageMap->setItem(key, value, oldValue, quotaException);
114 if (quotaException)
H A DStorageAreaMap.h57 void setItem(WebCore::Frame* sourceFrame, StorageAreaImpl* sourceArea, const String& key, const String& value, bool& quotaException);
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorDOMStorageAgent.cpp131 bool quotaException = false; local
132 storageArea->setItem(frame, key, value, quotaException);
133 if (quotaException)
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Storage/
H A DStorageManager.cpp59 void setItem(IPC::Connection* sourceConnection, uint64_t sourceStorageAreaID, const String& key, const String& value, const String& urlString, bool& quotaException);
156 void StorageManager::StorageArea::setItem(IPC::Connection* sourceConnection, uint64_t sourceStorageAreaID, const String& key, const String& value, const String& urlString, bool& quotaException) argument
162 RefPtr<StorageMap> newStorageMap = m_storageMap->setItem(key, value, oldValue, quotaException);
166 if (quotaException)

Completed in 91 milliseconds