Searched refs:StorageMap (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageMap.cpp27 #include "StorageMap.h"
33 PassRefPtr<StorageMap> StorageMap::create(unsigned quota)
35 return adoptRef(new StorageMap(quota));
38 StorageMap::StorageMap(unsigned quota) function in class:WebCore::StorageMap
46 PassRefPtr<StorageMap> StorageMap::copy()
48 RefPtr<StorageMap> newMap = create(m_quotaSize);
54 void StorageMap
[all...]
H A DStorageMap.h37 class StorageMap : public RefCounted<StorageMap> { class in namespace:WebCore
40 static PassRefPtr<StorageMap> create(unsigned quotaSize);
45 PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quotaException);
46 PassRefPtr<StorageMap> setItemIgnoringQuota(const String& key, const String& value);
47 PassRefPtr<StorageMap> removeItem(const String&, String& oldValue);
59 explicit StorageMap(unsigned quota);
60 PassRefPtr<StorageMap> copy();
H A DStorageAreaImpl.h39 class StorageMap;
86 RefPtr<StorageMap> m_storageMap;
H A DStorageAreaImpl.cpp38 #include "StorageMap.h"
53 , m_storageMap(StorageMap::create(quota))
148 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException);
170 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue);
192 m_storageMap = StorageMap::create(quota);
232 m_storageMap = StorageMap::create(quota);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Storage/
H A DLocalStorageDatabase.h39 class StorageMap;
53 void importItems(WebCore::StorageMap&);
H A DLocalStorageDatabase.cpp35 #include <WebCore/StorageMap.h>
158 void LocalStorageDatabase::importItems(StorageMap& storageMap)
H A DStorageManager.cpp38 #include <WebCore/StorageMap.h>
81 RefPtr<StorageMap> m_storageMap;
119 , m_storageMap(StorageMap::create(m_quotaInBytes))
162 RefPtr<StorageMap> newStorageMap = m_storageMap->setItem(key, value, oldValue, quotaException);
180 RefPtr<StorageMap> newStorageMap = m_storageMap->removeItem(key, oldValue);
200 m_storageMap = StorageMap::create(m_quotaInBytes);
217 m_storageMap = StorageMap::create(m_quotaInBytes);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Storage/
H A DStorageAreaMap.h39 class StorageMap;
92 RefPtr<WebCore::StorageMap> m_storageMap;
H A DStorageAreaMap.cpp44 #include <WebCore/StorageMap.h>
146 m_storageMap = StorageMap::create(m_quotaInBytes);
178 m_storageMap = StorageMap::create(m_quotaInBytes);
252 RefPtr<StorageMap> newStorageMap = StorageMap::create(m_quotaInBytes);

Completed in 137 milliseconds