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

12345

/macosx-10.9.5/bind9-45.100/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.9.5/ntp-88/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.9.5/WebCore-7537.78.1/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.9.5/WebKit-7537.78.2/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.9.5/bind9-45.100/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.9.5/ntp-88/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.9.5/WebKit-7537.78.2/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.h57 // Clients should instead get a WebQuotaManager, and query / set the quota via the Manager.
60 - (unsigned long long)quota;
61 - (void)setQuota:(unsigned long long)quota;
/macosx-10.9.5/WebKit-7537.78.2/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.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebSecurityOrigin.idl48 HRESULT quota([out, retval] unsigned long long* result);
49 HRESULT setQuota([in] unsigned long long quota);
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_security_origin.h26 * authorization for accessing data and performing certain tasks. Database quota
101 * Retrieves the quota of a database for a security origin.
108 * @return the quota in bytes or @c 0 if there is not a proper security origin scheme
113 * Sets the database usage quota for a security origin.
119 * @param quota the usage quota in bytes
121 EAPI void ewk_security_origin_web_database_quota_set(const Ewk_Security_Origin *o, uint64_t quota);
124 * Sets the application cache usage quota for a security origin.
127 * @param quota the usage quota i
[all...]
H A Dewk_security_origin.cpp88 void ewk_security_origin_web_database_quota_set(const Ewk_Security_Origin* origin, uint64_t quota) argument
93 WebCore::DatabaseManager::manager().setQuota(origin->securityOrigin.get(), quota);
97 void ewk_security_origin_application_cache_quota_set(const Ewk_Security_Origin* origin, int64_t quota) argument
100 WebCore::cacheStorage().storeUpdatedQuotaForOrigin(origin->securityOrigin.get(), quota);
/macosx-10.9.5/WebKit-7537.78.2/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 DatabaseManager::manager().setQuota(d->origin.get(), quota);
156 void QWebSecurityOrigin::setApplicationCacheQuota(qint64 quota) argument
158 WebCore::cacheStorage().storeUpdatedQuotaForOrigin(d->origin.get(), quota);
[all...]
/macosx-10.9.5/WebKit-7537.78.2/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.9.5/tcl-102/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.9.5/WebCore-7537.78.1/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.9.5/files-638.1.4/private/etc/
H A Drpc15 rquotad 100011 rquotaprog quota rquota
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebDatabaseManager.h48 void setQuotaForOrigin(const String& originIdentifier, unsigned long long quota) const;
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_3/inherit/
H A Dproto_1.js64 this.quota = 100;
134 "fred = new SalesPerson(); fred.quota",
136 fred.quota );

Completed in 117 milliseconds

12345