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

1234

/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dquota.c18 /* $Id: quota.c,v 1.18 2007/06/19 23:47:17 tbox Exp $ */
26 #include <isc/quota.h>
30 isc_quota_init(isc_quota_t *quota, int max) { argument
31 quota->max = max;
32 quota->used = 0;
33 quota->soft = 0;
34 return (isc_mutex_init(&quota->lock));
38 isc_quota_destroy(isc_quota_t *quota) { argument
39 INSIST(quota->used == 0);
40 quota
47 isc_quota_soft(isc_quota_t *quota, int soft) argument
54 isc_quota_max(isc_quota_t *quota, int max) argument
61 isc_quota_reserve(isc_quota_t *quota) argument
77 isc_quota_release(isc_quota_t *quota) argument
85 isc_quota_attach(isc_quota_t *quota, isc_quota_t **p) argument
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Dquota.c18 /* $Id: quota.c,v 1.18 2007/06/19 23:47:17 tbox Exp $ */
26 #include <isc/quota.h>
30 isc_quota_init(isc_quota_t *quota, int max) { argument
31 quota->max = max;
32 quota->used = 0;
33 quota->soft = 0;
34 return (isc_mutex_init(&quota->lock));
38 isc_quota_destroy(isc_quota_t *quota) { argument
39 INSIST(quota->used == 0);
40 quota
47 isc_quota_soft(isc_quota_t *quota, int soft) argument
54 isc_quota_max(isc_quota_t *quota, int max) argument
61 isc_quota_reserve(isc_quota_t *quota) argument
77 isc_quota_release(isc_quota_t *quota) argument
85 isc_quota_attach(isc_quota_t *quota, isc_quota_t **p) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/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;
/macosx-10.10/WebKit-7600.1.25/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;
/macosx-10.10/bind9-45.101/bind9/lib/isc/include/isc/
H A Dquota.h18 /* $Id: quota.h,v 1.16 2007/06/19 23:47:18 tbox Exp $ */
27 /*! \file isc/quota.h
31 * a server. It keeps track of the amount of quota in use, and
33 * share a quota.
59 isc_quota_init(isc_quota_t *quota, int max);
61 * Initialize a quota object.
69 isc_quota_destroy(isc_quota_t *quota);
71 * Destroy a quota object.
75 isc_quota_soft(isc_quota_t *quota, int soft);
77 * Set a soft quota
[all...]
/macosx-10.10/ntp-92/lib/isc/include/isc/
H A Dquota.h18 /* $Id: quota.h,v 1.16 2007/06/19 23:47:18 tbox Exp $ */
27 /*! \file isc/quota.h
31 * a server. It keeps track of the amount of quota in use, and
33 * share a quota.
59 isc_quota_init(isc_quota_t *quota, int max);
61 * Initialize a quota object.
69 isc_quota_destroy(isc_quota_t *quota);
71 * Destroy a quota object.
75 isc_quota_soft(isc_quota_t *quota, int soft);
77 * Set a soft quota
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebApplicationCacheQuotaManager.mm58 - (unsigned long long)quota
60 long long quota;
61 if (cacheStorage().calculateQuotaForOrigin([_origin _core], quota))
62 return quota;
66 - (void)setQuota:(unsigned long long)quota
68 cacheStorage().storeUpdatedQuotaForOrigin([_origin _core], quota);
H A DWebSecurityOriginPrivate.h62 // Clients should instead get a WebQuotaManager, and query / set the quota via the Manager.
65 - (unsigned long long)quota;
66 - (void)setQuota:(unsigned long long)quota;
H A DWebSecurityOrigin.mm175 // Clients should instead get a WebQuotaManager, and query / set the quota via the Manager.
189 - (unsigned long long)quota
198 - (void)setQuota:(unsigned long long)quota
201 DatabaseManager::manager().setQuota(reinterpret_cast<SecurityOrigin*>(_private), quota);
/macosx-10.10/WebKit-7600.1.25/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 DatabaseManager::manager().setQuota([_origin _core], quota);
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebSecurityOrigin.idl48 HRESULT quota([out, retval] unsigned long long* result);
49 HRESULT setQuota([in] unsigned long long quota);
H A DIWebDatabaseManager.idl63 HRESULT setQuota([in] BSTR originName, [in] unsigned long long quota);
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebSecurityOrigin.cpp142 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::quota( function in class:WebSecurityOrigin
158 /* [in] */ unsigned long long quota)
161 DatabaseManager::manager().setQuota(m_securityOrigin.get(), quota);
165 UNUSED_PARAM(quota);
157 setQuota( unsigned long long quota) argument
H A DWebSecurityOrigin.h64 virtual HRESULT STDMETHODCALLTYPE quota(
68 /* [in] */ unsigned long long quota);
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dquotavfs.tcl10 A quota-enforcing virtual filesystem. Requires the template vfs in templatevfs.tcl.
15 Two types of quota can be set: an incremented count of files matching a certain criterion, and
16 a running total of a certain quantity. Each quota is defined by a set of switches composing
17 a "quota group," any number of quota groups can be defined. A file must fit within all quotas defined
18 to avoid triggering quota enforcement.
21 attributes exceed a quota, the file is not rejected, rather, the already present files with
22 the oldest access times that contribute to the quota are deleted until there is room within
23 the quota limit for the addition of the new file.
26 exceed the quota b
[all...]
/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageAreaImpl.cpp50 inline StorageAreaImpl::StorageAreaImpl(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
53 , m_storageMap(StorageMap::create(quota))
70 PassRefPtr<StorageAreaImpl> StorageAreaImpl::create(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
72 RefPtr<StorageAreaImpl> area = adoptRef(new StorageAreaImpl(storageType, origin, syncManager, quota));
191 unsigned quota = m_storageMap->quota(); local
192 m_storageMap = StorageMap::create(quota);
231 unsigned quota = m_storageMap->quota(); local
232 m_storageMap = StorageMap::create(quota);
[all...]
H A DStorageMap.h54 unsigned quota() const { return m_quotaSize; } function in class:WebCore::StorageMap
59 explicit StorageMap(unsigned quota);
H A DStorageMap.cpp33 PassRefPtr<StorageMap> StorageMap::create(unsigned quota) argument
35 return adoptRef(new StorageMap(quota));
38 StorageMap::StorageMap(unsigned quota) argument
41 , m_quotaSize(quota) // quota measured in bytes
H A DStorageNamespaceImpl.cpp60 unsigned quota = pageGroup->groupSettings().localStorageQuotaBytes(); local
67 RefPtr<StorageNamespace> storageNamespace = adoptRef(new StorageNamespaceImpl(LocalStorage, lookupPath, quota));
85 StorageNamespaceImpl::StorageNamespaceImpl(StorageType storageType, const String& path, unsigned quota) argument
89 , m_quota(quota)
H A DStorageAreaImpl.h44 static PassRefPtr<StorageAreaImpl> create(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota);
76 StorageAreaImpl(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota);
/macosx-10.10/files-662.1.1/private/etc/
H A Drpc15 rquotad 100011 rquotaprog quota rquota
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_3/inherit/
H A Dproto_1.js64 this.quota = 100;
134 "fred = new SalesPerson(); fred.quota",
136 fred.quota );
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Storage/
H A DStorageNamespaceImpl.cpp60 unsigned quota = pageGroup->groupSettings().localStorageQuotaBytes(); local
61 RefPtr<StorageNamespaceImpl> localStorageNamespace = adoptRef(new StorageNamespaceImpl(LocalStorage, pageGroupID, quota));
/macosx-10.10/WebCore-7600.1.25/loader/appcache/
H A DApplicationCacheStorage.h65 void setDefaultOriginQuota(int64_t quota);
67 bool calculateQuotaForOrigin(const SecurityOrigin*, int64_t& quota);
69 bool storeUpdatedQuotaForOrigin(const SecurityOrigin*, int64_t quota);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKDatabaseManager.cpp207 void WKDatabaseManagerSetQuotaForOrigin(WKDatabaseManagerRef databaseManagerRef, WKSecurityOriginRef originRef, uint64_t quota) argument
210 toImpl(databaseManagerRef)->setQuotaForOrigin(toImpl(originRef), quota); local
214 UNUSED_PARAM(quota);

Completed in 240 milliseconds

1234