Searched refs:quota (Results 51 - 75 of 88) sorted by relevance

1234

/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp409 uint64_t quota; local
413 quota = ewk_view_exceeded_database_quota(m_view,
417 /* if client did not set quota, and database is being created now, the
418 * default quota is applied
420 if (!quota && !DatabaseTracker::tracker().hasEntryForOrigin(origin))
421 quota = ewk_settings_web_database_default_quota_get();
423 DatabaseTracker::tracker().setQuota(origin, quota);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dextensions.py628 _QUOTA_PARAM = 'quota'
648 quota = self._request.get_parameter_value(self._QUOTA_PARAM)
649 if quota is None:
653 quota = int(quota)
656 if quota < 0 or quota >= 2 ** 32:
658 ws_request.mux_quota = quota
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
H A Dproto_10.js76 this.quota = 100;
/external/strace/
H A DAndroid.mk8 io.c ioctl.c mem.c net.c process.c bjm.c quota.c \
H A Dquota.c144 #define XFS_QUOTA_UDQ_ACCT (1<<0) /* user quota accounting */
145 #define XFS_QUOTA_UDQ_ENFD (1<<1) /* user quota limits enforcement */
146 #define XFS_QUOTA_GDQ_ACCT (1<<2) /* group quota accounting */
147 #define XFS_QUOTA_GDQ_ENFD (1<<3) /* group quota limits enforcement */
149 #define XFS_USER_QUOTA (1<<0) /* user quota type */
150 #define XFS_PROJ_QUOTA (1<<1) /* (IRIX) project quota type */
151 #define XFS_GROUP_QUOTA (1<<2) /* group quota type */
320 fs_qfilestat_t qs_uquota; /* user quota storage information */
321 fs_qfilestat_t qs_gquota; /* group quota storage information */
693 #include <ufs/quota
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitsecurityorigin.cpp44 * #webkit_security_origin_get_web_database_usage. An origin's quota can be
197 * WebKitSecurityOrigin:web-database-quota:
204 g_param_spec_uint64("web-database-quota",
206 _("The web database quota of the security origin in bytes"),
311 * Returns the quota for Web Database storage of the security origin
314 * Returns: the Web Database quota
333 * @quota: a new Web Database quota in bytes
335 * Adjust the quota for Web Database storage of the security origin
339 void webkit_security_origin_set_web_database_quota(WebKitSecurityOrigin* securityOrigin, guint64 quota) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebDatabaseManagerProxy.cpp214 void WebDatabaseManagerProxy::setQuotaForOrigin(WebSecurityOrigin* origin, uint64_t quota) argument
217 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebDatabaseManager::SetQuotaForOrigin(origin->databaseIdentifier(), quota));
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundle.cpp151 void WKBundleSetDatabaseQuota(WKBundleRef bundleRef, uint64_t quota) argument
153 toImpl(bundleRef)->setDatabaseQuota(quota);
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.h153 void setAppCacheMaximumSize(unsigned long long quota);
193 void setApplicationCacheOriginQuota(unsigned long long quota);
H A DLayoutTestControllerQt.cpp423 void LayoutTestController::setAppCacheMaximumSize(unsigned long long quota) argument
425 m_drt->webPage()->settings()->setOfflineWebApplicationCacheQuota(quota);
563 void LayoutTestController::setApplicationCacheOriginQuota(unsigned long long quota) argument
567 m_topLoadingFrame->securityOrigin().setApplicationCacheQuota(quota);
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp256 void LayoutTestController::setApplicationCacheOriginQuota(unsigned long long quota) argument
272 void LayoutTestController::setDatabaseQuota(unsigned long long quota) argument
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DLayoutTestController.idl86 void setDatabaseQuota(in unsigned long long quota);
/external/webkit/Source/WebCore/storage/
H A DDatabaseTracker.cpp126 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, quota INTEGER NOT NULL ON CONFLICT FAIL);")) {
171 // Give the chrome client a chance to increase the quota.
225 // The maximum size for a database is the full quota for its origin, minus the current usage within the origin,
317 // If this origin's quota is being tracked (open handle to a database in this origin), add this new database
318 // to the quota manager now
346 SQLiteStatement statement(m_database, "SELECT origin, quota FROM Origins");
657 void DatabaseTracker::setQuota(SecurityOrigin* origin, unsigned long long quota) argument
661 if (quotaForOriginNoLock(origin) == quota)
674 statement.bindInt64(2, quota);
680 SQLiteStatement statement(m_database, "UPDATE Origins SET quota
[all...]
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.h92 void setAppCacheMaximumSize(unsigned long long quota);
93 void setApplicationCacheOriginQuota(unsigned long long quota);
98 void setDatabaseQuota(unsigned long long quota);
/external/webkit/Source/WebKit/chromium/public/
H A DWebKitClient.h100 virtual WebStorageNamespace* createLocalStorageNamespace(const WebString& path, unsigned quota) { return 0; } argument
H A DWebViewClient.h104 virtual WebStorageNamespace* createSessionStorageNamespace(unsigned quota) { return 0; } argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp532 quint64 quota = QWebSettings::offlineStorageDefaultQuota(); local
535 DatabaseTracker::tracker().setQuota(frame->document()->securityOrigin(), quota);
550 int64_t quota; local
556 if (!WebCore::cacheStorage().quotaForOrigin(origin, quota))
/external/webkit/Source/WebKit/win/
H A DWebDatabaseManager.cpp376 /* [in] */ unsigned long long quota)
384 DatabaseTracker::tracker().setQuota(SecurityOrigin::createFromString(origin).get(), quota);
374 setQuota( BSTR origin, unsigned long long quota) argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp425 unsigned long long quota = 5 * 1024 * 1024; local
431 DatabaseTracker::tracker().setQuota(document->securityOrigin(), quota);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundle.cpp143 void InjectedBundle::setDatabaseQuota(uint64_t quota) argument
145 WebDatabaseManager::shared().setQuotaForOrigin("file:///", quota);
/external/kernel-headers/original/linux/
H A Dnetdevice.h396 int (*poll) (struct net_device *dev, int *quota);
397 int quota; member in struct:net_device
865 dev->quota += undo;
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp431 void ApplicationCacheStorage::setDefaultOriginQuota(int64_t quota) argument
433 m_defaultOriginQuota = quota;
436 bool ApplicationCacheStorage::quotaForOrigin(const SecurityOrigin* origin, int64_t& quota) argument
438 // If an Origin record doesn't exist, then the COUNT will be 0 and quota will be 0.
440 // if a quota of 0 is real, from the record, or from null.
441 SQLiteStatement statement(m_database, "SELECT COUNT(quota), quota FROM Origins WHERE origin=?");
448 // Return the quota, or if it was null the default.
451 quota = wasNoRecord ? m_defaultOriginQuota : statement.getColumnInt64(1);
455 LOG_ERROR("Could not get the quota o
532 storeUpdatedQuotaForOrigin(const SecurityOrigin* origin, int64_t quota) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_function_dispatcher.cc504 ExtensionsQuotaService* quota = service->quota_service(); local
505 if (quota->Assess(extension_id(), function, &params.arguments,
/external/webkit/Source/WebCore/page/
H A DPageGroup.cpp348 unsigned quota = m_groupSettings->localStorageQuotaBytes(); local
349 m_localStorage = StorageNamespace::localStorageNamespace(path, quota);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPreferences.mm1031 - (void)setApplicationCacheTotalQuota:(int64_t)quota
1033 [self _setLongLongValue:quota forKey:WebKitApplicationCacheTotalQuota];
1036 [WebApplicationCache setMaximumSize:quota];
1044 - (void)setApplicationCacheDefaultOriginQuota:(int64_t)quota
1046 [self _setLongLongValue:quota forKey:WebKitApplicationCacheDefaultOriginQuota];

Completed in 835 milliseconds

1234