Searched refs:quota (Results 1 - 25 of 88) sorted by relevance

1234

/external/webkit/Source/WebCore/page/
H A DGroupSettings.cpp37 void GroupSettings::setLocalStorageQuotaBytes(unsigned quota) argument
39 m_localStorageQuotaBytes = quota;
47 void GroupSettings::setIndexedDBQuotaBytes(int64_t quota) argument
49 m_indexedDBQuotaBytes = quota;
/external/webkit/Source/WebCore/storage/
H A DStorageNamespace.cpp39 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota) argument
41 return StorageNamespaceImpl::localStorageNamespace(path, quota);
45 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace(Page*, unsigned quota) argument
47 return StorageNamespaceImpl::sessionStorageNamespace(quota);
H A DStorageNamespace.h45 static PassRefPtr<StorageNamespace> localStorageNamespace(const String& path, unsigned quota);
46 static PassRefPtr<StorageNamespace> sessionStorageNamespace(Page*, unsigned quota);
H A DStorageNamespaceImpl.h47 static PassRefPtr<StorageNamespace> localStorageNamespace(const String& path, unsigned quota);
48 static PassRefPtr<StorageNamespace> sessionStorageNamespace(unsigned quota);
69 StorageNamespaceImpl(StorageType, const String& path, unsigned quota);
80 unsigned m_quota; // The default quota for each new storage area.
H A DStorageAreaImpl.cpp47 inline StorageAreaImpl::StorageAreaImpl(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
50 , m_storageMap(StorageMap::create(quota))
61 PassRefPtr<StorageAreaImpl> StorageAreaImpl::create(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
63 RefPtr<StorageAreaImpl> area = adoptRef(new StorageAreaImpl(storageType, origin, syncManager, quota));
201 unsigned quota = m_storageMap->quota(); local
202 m_storageMap = StorageMap::create(quota);
240 unsigned quota = m_storageMap->quota(); local
241 m_storageMap = StorageMap::create(quota);
[all...]
H A DStorageNamespaceImpl.cpp53 PassRefPtr<StorageNamespace> StorageNamespaceImpl::localStorageNamespace(const String& path, unsigned quota) argument
58 RefPtr<StorageNamespace> storageNamespace = adoptRef(new StorageNamespaceImpl(LocalStorage, lookupPath, quota));
66 PassRefPtr<StorageNamespace> StorageNamespaceImpl::sessionStorageNamespace(unsigned quota) argument
68 return adoptRef(new StorageNamespaceImpl(SessionStorage, String(), quota));
71 StorageNamespaceImpl::StorageNamespaceImpl(StorageType storageType, const String& path, unsigned quota) argument
75 , m_quota(quota)
H A DStorageAreaImpl.h44 static PassRefPtr<StorageAreaImpl> create(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota);
68 StorageAreaImpl(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebQuotaManager.h30 @discussion This protocol is used to view and manipulate a per-origin storage quota.
54 @method quota
55 @result The current quota of security origin in bytes.
57 - (unsigned long long)quota;
61 @param Sets a new quota, in bytes, on this security origin.
63 - (void)setQuota:(unsigned long long)quota;
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebApplicationCacheQuotaManager.mm62 - (unsigned long long)quota
65 long long quota;
66 if (cacheStorage().quotaForOrigin([_origin _core], quota))
67 return quota;
74 - (void)setQuota:(unsigned long long)quota
77 cacheStorage().storeUpdatedQuotaForOrigin([_origin _core], quota);
H A DWebSecurityOriginPrivate.h56 // Clients should instead get a WebQuotaManager, and query / set the quota via the Manager.
59 - (unsigned long long)quota;
60 - (void)setQuota:(unsigned long long)quota;
/external/webkit/LayoutTests/storage/script-tests/
H A Dstorageinfo-query-usage.js11 function usageCallback(usage, quota)
14 returnedQuota = quota;
/external/iptables/include/linux/netfilter/
H A Dxt_quota.h14 aligned_u64 quota; member in struct:xt_quota_info
H A Dxt_quota2.h19 aligned_u64 quota; member in struct:xt_quota_mtinfo2
/external/kernel-headers/original/linux/netfilter/
H A Dxt_quota.h12 aligned_u64 quota; member in struct:xt_quota_info
/external/webkit/Source/WebKit/chromium/src/
H A DWebStorageNamespaceImpl.cpp43 WebStorageNamespace* WebStorageNamespace::createLocalStorageNamespace(const WebString& path, unsigned quota) argument
45 return new WebStorageNamespaceImpl(WebCore::StorageNamespaceImpl::localStorageNamespace(path, quota));
48 WebStorageNamespace* WebStorageNamespace::createSessionStorageNamespace(unsigned quota) argument
50 return new WebStorageNamespaceImpl(WebCore::StorageNamespaceImpl::sessionStorageNamespace(quota));
H A DStorageNamespaceProxy.cpp45 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota) argument
47 return adoptRef(new StorageNamespaceProxy(WebKit::webKitClient()->createLocalStorageNamespace(path, quota), LocalStorage));
50 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace(Page* page, unsigned quota) argument
53 return adoptRef(new StorageNamespaceProxy(webViewClient->createSessionStorageNamespace(quota), SessionStorage));
/external/webkit/Source/WebKit/chromium/public/
H A DWebStorageNamespace.h50 WEBKIT_API static WebStorageNamespace* createLocalStorageNamespace(const WebString& backingDirectoryPath, unsigned quota);
51 WEBKIT_API static WebStorageNamespace* createSessionStorageNamespace(unsigned quota);
53 // The quota for each storage area. Suggested by the spec.
57 // per-origin quota on it. Like LocalStorage there are known attacks against
/external/webkit/Source/WebKit/mac/Storage/
H A DWebDatabaseQuotaManager.mm59 - (unsigned long long)quota
68 // If the quota is set to a value lower than the current usage, that quota will
69 // "stick" but no data will be purged to meet the new quota. This will simply
71 - (void)setQuota:(unsigned long long)quota
74 DatabaseTracker::tracker().setQuota([_origin _core], quota);
/external/iptables/extensions/
H A Dlibxt_quota.c2 * Shared library add-on to iptables to add quota support
15 {.name = "quota", .id = O_QUOTA, .type = XTTYPE_UINT64,
17 XTOPT_POINTER(struct xt_quota_info, quota)},
23 printf("quota match options:\n"
24 "[!] --quota quota quota (bytes)\n");
31 printf(" quota: %llu bytes", (unsigned long long)q->quota);
41 printf(" --quota
[all...]
H A Dlibxt_quota2.c41 {.name = "quota", .id = O_QUOTA, .type = XTTYPE_UINT64,
43 XTOPT_POINTER(struct xt_quota_mtinfo2, quota)},
51 "quota match options:\n"
53 " --no-change never change counter/quota value for matching packets\n"
55 "[!] --quota quota initial quota (bytes or packets)\n"
99 printf(" --quota %llu ", (unsigned long long)q->quota);
112 printf(" quota");
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebSecurityOrigin.idl48 HRESULT quota([out, retval] unsigned long long* result);
49 HRESULT setQuota([in] unsigned long long quota);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebsecurityorigin.h53 void setDatabaseQuota(qint64 quota);
54 void setApplicationCacheQuota(qint64 quota);
H A Dqwebsecurityorigin.cpp131 Returns the quota for the databases in the security origin.
143 Sets the quota for the databases in the security origin to \a quota bytes.
145 If the quota is set to a value less than the current usage, the quota will remain
146 and no data will be purged to meet the new quota. However, no new data can be added
149 void QWebSecurityOrigin::setDatabaseQuota(qint64 quota) argument
152 DatabaseTracker::tracker().setQuota(d->origin.get(), quota);
156 void QWebSecurityOrigin::setApplicationCacheQuota(qint64 quota) argument
159 WebCore::cacheStorage().storeUpdatedQuotaForOrigin(d->origin.get(), quota);
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_test_api.cc60 ExtensionsQuotaService* quota = service->quota_service(); local
61 quota->Purge();
62 quota->violators_.clear();
/external/webkit/Source/WebKit/win/
H A DWebSecurityOrigin.cpp146 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::quota( function in class:WebSecurityOrigin
162 /* [in] */ unsigned long long quota)
165 DatabaseTracker::tracker().setQuota(m_securityOrigin.get(), quota);
169 UNUSED_PARAM(quota);
161 setQuota( unsigned long long quota) argument

Completed in 298 milliseconds

1234