Searched refs:expectedUsage (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseDetails.h50 DatabaseDetails(const String& databaseName, const String& displayName, unsigned long long expectedUsage, unsigned long long currentUsage) argument
53 , m_expectedUsage(expectedUsage)
63 uint64_t expectedUsage() const { return m_expectedUsage; } function in class:WebCore::DatabaseDetails
H A DDatabaseTracker.cpp457 int64_t expectedUsage; local
481 expectedUsage = statement.getColumnInt64(1);
484 return DatabaseDetails(name, displayName, expectedUsage, usageForDatabase(name, origin));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebPageUIClient.h46 quint64 exceededDatabaseQuota(const QString& databaseName, const QString& displayName, WKSecurityOriginRef, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage);
60 static unsigned long long exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void *clientInfo);
H A DQtWebPageUIClient.cpp55 quint64 QtWebPageUIClient::exceededDatabaseQuota(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
57 return m_webView->d_func()->exceededDatabaseQuota(databaseName, displayName, securityOrigin, currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
101 unsigned long long QtWebPageUIClient::exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef securityOrigin, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void *clientInfo) argument
105 return toQtWebPageUIClient(clientInfo)->exceededDatabaseQuota(qDatabaseName, qDisplayName, securityOrigin, currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
H A DQtDialogRunner.cpp254 Q_PROPERTY(quint64 expectedUsage READ expectedUsage CONSTANT)
258 DatabaseQuotaDialogContextObject(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
265 , m_expectedUsage(expectedUsage)
283 quint64 expectedUsage() const { return m_expectedUsage; } function in class:WebKit::DatabaseQuotaDialogContextObject
399 bool QtDialogRunner::initForDatabaseQuotaDialog(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
405 DatabaseQuotaDialogContextObject* contextObject = new DatabaseQuotaDialogContextObject(databaseName, displayName, securityOrigin, currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
H A DQtDialogRunner.h52 bool initForDatabaseQuotaDialog(const QString& databaseName, const QString& displayName, WKSecurityOriginRef, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebdatabase.cpp104 return details.expectedUsage();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebUIClient.h101 unsigned long long exceededDatabaseQuota(WebPageProxy*, WebFrameProxy*, WebSecurityOrigin*, const String& databaseName, const String& databaseDisplayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage);
H A DWebDatabaseManagerProxy.cpp176 detailsMap.set(databaseDetailsExpectedUsageKey(), WebUInt64::create(details.expectedUsage()));
H A DWebUIClient.cpp333 unsigned long long WebUIClient::exceededDatabaseQuota(WebPageProxy* page, WebFrameProxy* frame, WebSecurityOrigin* origin, const String& databaseName, const String& databaseDisplayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage) argument
338 return m_client.exceededDatabaseQuota(toAPI(page), toAPI(frame), toAPI(origin), toAPI(databaseName.impl()), toAPI(databaseDisplayName.impl()), currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage, m_client.clientInfo);
H A DWebPageProxy.cpp148 uint64_t expectedUsage; member in struct:WebKit::ExceededDatabaseQuotaRecords::Record
156 uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage,
180 uint64_t expectedUsage, PassRefPtr<Messages::WebPageProxy::ExceededDatabaseQuota::DelayedReply> reply)
190 record->expectedUsage = expectedUsage;
4065 void WebPageProxy::exceededDatabaseQuota(uint64_t frameID, const String& originIdentifier, const String& databaseName, const String& displayName, uint64_t currentQuota, uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage, PassRefPtr<Messages::WebPageProxy::ExceededDatabaseQuota::DelayedReply> reply) argument
4070 currentDatabaseUsage, expectedUsage, reply);
4085 record->currentOriginUsage, record->currentDatabaseUsage, record->expectedUsage);
177 createRecord( uint64_t frameID, String originIdentifier, String databaseName, String displayName, uint64_t currentQuota, uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage, PassRefPtr<Messages::WebPageProxy::ExceededDatabaseQuota::DelayedReply> reply) argument
/macosx-10.9.5/WebKit-7537.78.2/mac/Storage/
H A DWebDatabaseManager.mm119 objects[1] = [NSNumber numberWithUnsignedLongLong:details.expectedUsage()];
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_web_database.cpp63 return details.expectedUsage();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DPageUIClientEfl.cpp209 unsigned long long PageUIClientEfl::exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void* clientInfo) argument
212 return view->informDatabaseQuotaReached(toImpl(databaseName)->string(), toImpl(displayName)->string(), currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebCoreArgumentCoders.cpp762 encoder << details.expectedUsage();
776 uint64_t expectedUsage;
777 if (!decoder.decode(expectedUsage))
784 details = DatabaseDetails(name, displayName, expectedUsage, currentUsage);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqquickwebview_p_p.h106 quint64 exceededDatabaseQuota(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage);
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitwebdatabase.cpp366 return details.expectedUsage();
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebDatabaseManager.cpp129 COMVariantSetter<unsigned long long>::setVariant(pVar, m_details.expectedUsage());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A DEwkView.h194 unsigned long long informDatabaseQuotaReached(const String& databaseName, const String& displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage);
H A Dewk_view.h153 unsigned long long (*exceeded_database_quota)(Ewk_View_Smart_Data *sd, const char *databaseName, const char *displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage);
H A DEwkView.cpp965 unsigned long long EwkView::informDatabaseQuotaReached(const String& databaseName, const String& displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage) argument
972 return sd->api->exceeded_database_quota(sd, databaseName.utf8().data(), displayName.utf8().data(), currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DWebInspectorProxyMac.mm225 static unsigned long long exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef, WKStringRef, unsigned long long, unsigned long long, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void*)
227 return std::max<unsigned long long>(expectedUsage, currentDatabaseUsage * 1.25);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DChromeClientEfl.cpp431 details.currentUsage(), details.expectedUsage());
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebChromeClient.cpp594 newQuota = m_page->injectedBundleUIClient().didExceedDatabaseQuota(m_page, webSecurityOrigin.get(), databaseName, details.displayName(), currentQuota, currentOriginUsage, details.currentUsage(), details.expectedUsage());
598 Messages::WebPageProxy::ExceededDatabaseQuota(webFrame->frameID(), origin->databaseIdentifier(), databaseName, details.displayName(), currentQuota, currentOriginUsage, details.currentUsage(), details.expectedUsage()),
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DChromeClientBlackBerry.cpp480 unsigned long long estimatedSize = details.expectedUsage();

Completed in 313 milliseconds

12