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

/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestController.java76 public void setDatabaseQuota(long quota) { argument
78 Log.i(LOG_TAG, "setDatabaseQuota() called with: " + quota);
80 quota);
/frameworks/base/core/java/android/webkit/
H A DWebStorage.java36 * Encapsulates a callback function to be executed when a new quota is made
40 * executed once a decision to either allow or deny new quota is made,
71 private static final String QUOTA = "quota";
79 * Class containing the HTML5 database quota and usage for an origin.
86 private Origin(String origin, long quota, long usage) { argument
88 mQuota = quota;
92 private Origin(String origin, long quota) { argument
94 mQuota = quota;
114 * Returns the quota for this origin's HTML5 database.
115 * @return The quota i
326 setQuotaForOrigin(String origin, long quota) argument
431 nativeSetQuotaForOrigin(String origin, long quota) argument
[all...]
H A DWebViewCore.java368 * Notify the browser that the origin has exceeded it's database quota.
371 * @param currentQuota The current quota for the origin.
378 // Inform the callback proxy of the quota overflow. Send an object
381 // client to allow or deny quota is available.
385 public void updateQuota(long quota) {
386 nativeSetNewStorageLimit(quota);
399 public void updateQuota(long quota) {
400 nativeSetNewStorageLimit(quota);
631 * quota for the current origin or more space for the app cache, and that
633 * @param limit Is the new quota fo
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DCallbackProxy.java485 public void setDatabaseQuota(long quota) { argument
486 WebStorage.getInstance().setQuotaForOrigin("file://", quota);

Completed in 64 milliseconds