HomeSort by relevance Sort by last modified time
    Searched refs:estimatedSize (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
WorkerGlobalScopeWebDatabase.idl 28 [EnabledAtRuntime=database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
30 [EnabledAtRuntime=database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
WorkerGlobalScopeWebDatabase.h 45 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
46 static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
DatabaseServer.cpp 56 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError &error, String& errorMessage)
59 if (DatabaseTracker::tracker().canEstablishDatabase(backendContext.get(), name, displayName, estimatedSize, error))
60 database = createDatabase(backendContext, type, name, expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
66 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage)
71 database = adoptRef(new Database(backendContext, name, expectedVersion, displayName, estimatedSize));
74 database = adoptRef(new DatabaseSync(backendContext, name, expectedVersion, displayName, estimatedSize));
DatabaseBackendSync.cpp 34 DatabaseBackendSync::DatabaseBackendSync(PassRefPtr<DatabaseBackendContext> databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize)
35 : DatabaseBackendBase(databaseContext, name, expectedVersion, displayName, estimatedSize, DatabaseType::Sync)
DatabaseServer.h 41 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
50 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
WindowWebDatabase.idl 30 [EnabledAtRuntime=database, MeasureAs=OpenWebDatabase, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
DOMWindowWebDatabase.h 45 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState&);
DatabaseBackendSync.h 49 DatabaseBackendSync(PassRefPtr<DatabaseBackendContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
WorkerGlobalScopeWebDatabase.cpp 44 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState& es)
50 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error);
61 PassRefPtr<DatabaseSync> WorkerGlobalScopeWebDatabase::openDatabaseSync(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState& es)
67 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error);
DOMWindowWebDatabase.cpp 44 PassRefPtr<Database> DOMWindowWebDatabase::openDatabase(DOMWindow* window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionState& es)
53 database = dbManager.openDatabase(window->document(), name, version, displayName, estimatedSize, creationCallback, error);
AbstractDatabaseServer.h 47 const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize,
DatabaseManager.h 75 PassRefPtr<Database> openDatabase(ScriptExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback>, DatabaseError&);
76 PassRefPtr<DatabaseSync> openDatabaseSync(ScriptExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback>, DatabaseError&);
97 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError&, String& errorMessage);
DatabaseBackend.h 51 DatabaseBackend(PassRefPtr<DatabaseBackendContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
DatabaseTracker.h 57 bool canEstablishDatabase(DatabaseBackendContext*, const String& name, const String& displayName, unsigned long estimatedSize, DatabaseError&);
DatabaseBackendBase.h 66 virtual unsigned long estimatedSize() const;
100 const String& displayName, unsigned long estimatedSize, DatabaseType);
DatabaseManager.cpp 186 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage)
194 displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
221 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback,
229 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
250 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, DatabaseError& error)
258 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
DatabaseBackend.cpp 43 DatabaseBackend::DatabaseBackend(PassRefPtr<DatabaseBackendContext> databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize)
44 : DatabaseBackendBase(databaseContext, name, expectedVersion, displayName, estimatedSize, DatabaseType::Async)
Database.h 79 const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
  /external/chromium_org/third_party/WebKit/public/web/
WebCommonWorkerClient.h 54 virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize)
WebDatabase.h 48 WEBKIT_EXPORT unsigned long estimatedSize() const;
  /external/chromium_org/third_party/WebKit/Source/web/
DatabaseObserver.cpp 65 static PassRefPtr<AllowDatabaseMainThreadBridge> create(WebCore::WorkerGlobalScope* workerGlobalScope, WebWorkerBase* webWorkerBase, const String& mode, WebFrame* frame, const String& name, const String& displayName, unsigned long estimatedSize)
67 return adoptRef(new AllowDatabaseMainThreadBridge(workerGlobalScope, webWorkerBase, mode, frame, name, displayName, estimatedSize));
74 AllowDatabaseParams(const String& mode, WebFrame* frame, const String& name, const String& displayName, unsigned long estimatedSize)
79 , m_estimatedSize(estimatedSize)
88 AllowDatabaseMainThreadBridge(WebCore::WorkerGlobalScope* workerGlobalScope, WebWorkerBase* webWorkerBase, const String& mode, WebFrame* frame, const String& name, const String& displayName, unsigned long estimatedSize)
92 adoptPtr(new AllowDatabaseParams(mode, frame, name, displayName, estimatedSize)));
104 bool allowDatabaseForWorker(WebFrame* frame, const WebString& name, const WebString& displayName, unsigned long estimatedSize)
116 RefPtr<AllowDatabaseMainThreadBridge> bridge = AllowDatabaseMainThreadBridge::create(workerGlobalScope, workerLoaderProxy->toWebWorkerBase(), mode, frame, name, displayName, estimatedSize);
131 bool DatabaseObserver::canEstablishDatabase(ScriptExecutionContext* scriptExecutionContext, const String& name, const String& displayName, unsigned long estimatedSize)
144 return webView->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize);
    [all...]
WebDatabase.cpp 61 unsigned long WebDatabase::estimatedSize() const
64 return m_database->estimatedSize();
WebWorkerClientImpl.h 83 virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) OVERRIDE;
WebWorkerClientImpl.cpp 107 bool WebWorkerClientImpl::allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize)
114 return !webView->permissionClient() || webView->permissionClient()->allowDatabase(m_webFrame, name, displayName, estimatedSize);
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 214 * @param estimatedSize the estimated size of a new database, or 0 if
222 String databaseIdentifier, long currentQuota, long estimatedSize,
261 // If we cannot satisfy the estimatedSize, we should return 0 as
264 if (totalUnusedQuota >= estimatedSize) {
265 newOriginQuota = estimatedSize;
270 " estimatedSize for the new database " +
271 " (estimatedSize: " + estimatedSize +
281 // Increase the quota. If estimatedSize == 0, then this is a quota overflow
283 long quotaIncrease = estimatedSize == 0
    [all...]

Completed in 480 milliseconds

1 2 3