HomeSort by relevance Sort by last modified time
    Searched refs:quota (Results 76 - 100 of 310) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_quota.h 23 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_quota.h 23 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/netfilter/
xt_quota.h 23 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter/
xt_quota.h 23 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter/
xt_quota.h 23 aligned_u64 quota; member in struct:xt_quota_info
  /external/chromium_org/storage/browser/quota/
storage_observer.cc 5 #include "storage/browser/quota/storage_observer.h"
52 : usage(0), quota(0) {
55 StorageObserver::Event::Event(const Filter& filter, int64 usage, int64 quota)
56 : filter(filter), usage(usage), quota(quota) {
62 quota == other.quota;
storage_observer.h 10 #include "storage/browser/quota/quota_client.h"
11 #include "storage/common/quota/quota_types.h"
17 // events, such as changes in quota or usage.
62 // The quota corresponding to the filter.
63 int64 quota; member in struct:storage::StorageObserver::Event
66 Event(const Filter& filter, int64 usage, int64 quota);
  /frameworks/base/core/java/android/webkit/
WebStorage.java 41 * Encapsulates a callback function which is used to provide a new quota
51 * Provides a new quota, specified in bytes.
53 * @param newQuota the new quota, in bytes
71 protected Origin(String origin, long quota, long usage) {
73 mQuota = quota;
92 * Gets the quota for this origin, for the Web SQL Database API, in
94 * quota will be set to zero.
96 * @return the quota, in bytes
148 * Gets the storage quota for the Web SQL Database API for the given origin.
149 * The quota is given in bytes and the origin is specified using its strin
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_types.h 12 #include "storage/common/quota/quota_types.h"
21 // Represends global usage and quota information for specific type of storage.
35 void set_quota(int64 quota) {
36 quota_ = quota;
50 // Represents per host usage and quota information for the storage.
60 void set_quota(int64 quota) {
61 quota_ = quota;
  /external/chromium_org/third_party/WebKit/public/platform/
WebSocketHandle.h 64 virtual void flowControl(int64_t quota) = 0;
WebSocketHandleClient.h 74 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0;
  /external/iptables/extensions/
libxt_quota.c 2 * Shared library add-on to iptables to add quota support
15 {.name = "quota", .id = O_QUOTA, .type = XTTYPE_UINT64,
17 XTOPT_POINTER(struct xt_quota_info, quota)},
23 printf("quota match options:\n"
24 "[!] --quota quota quota (bytes)\n");
31 printf(" quota: %llu bytes", (unsigned long long)q->quota);
41 printf(" --quota %llu", (unsigned long long) q->quota)
    [all...]
libxt_quota2.c 41 {.name = "quota", .id = O_QUOTA, .type = XTTYPE_UINT64,
43 XTOPT_POINTER(struct xt_quota_mtinfo2, quota)},
51 "quota match options:\n"
53 " --no-change never change counter/quota value for matching packets\n"
55 "[!] --quota quota initial quota (bytes or packets)\n"
99 printf(" --quota %llu ", (unsigned long long)q->quota);
112 printf(" quota");
    [all...]
  /external/e2fsprogs/e2fsck/
Makefile.in 70 dx_dirinfo.o ehandler.o problem.o message.o quota.o recovery.o \
79 profiled/message.o profiled/problem.o profiled/quota.o \
114 $(srcdir)/quota.c \
298 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
299 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h \
300 $(top_srcdir)/lib/quota/quotaio_tree.h $(top_srcdir)/lib/../e2fsck/dict.h \
309 $(srcdir)/profile.h prof_err.h $(top_srcdir)/lib/quota/mkquota.h \
310 $(top_srcdir)/lib/quota/quotaio.h $(top_srcdir)/lib/quota/dqblk_v2.h
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
quota_test.js 15 function initUsageCallback(usage, quota) {
17 origReturnedQuota = returnedQuota = quota;
18 debug("original quota is " + displaySize(origReturnedQuota));
55 fail("dataAdded > quota " + dataAdded + " > " + origReturnedQuota);
79 function usageCallback(usage, quota) {
84 returnedQuota = quota;
85 debug("Allotted quota is " + displaySize(returnedQuota));
  /external/chromium_org/content/test/data/fileapi/
quota_test.js 36 fail('Unexpectedly succeeded to truncate. It should fail by quota.');
44 function quotaSuccess(usage, quota) {
47 if (quota != 5000 * 1024)
48 fail('Quota is not 5000KiB: ' + quota);
59 debug('Querying usage and quota.');
  /external/chromium_org/storage/browser/fileapi/
sandbox_file_stream_writer.h 17 #include "storage/common/quota/quota_types.h"
42 void set_default_quota(int64 quota) {
43 default_quota_ = quota;
47 // Performs quota calculation and calls local_file_writer_->Write().
62 int64 quota);
sandbox_file_stream_writer.cc 16 #include "storage/browser/quota/quota_manager_proxy.h"
23 // Adjust the |quota| value in overwriting case (i.e. |file_size| > 0 and
24 // |file_offset| < |file_size|) to make the remaining quota calculation easier.
25 // Specifically this widens the quota for overlapping range (so that we can
26 // simply compare written bytes against the adjusted quota).
27 int64 AdjustQuotaForOverlap(int64 quota,
31 if (quota < 0)
32 quota = 0;
34 if (kint64max - overlap > quota)
35 quota += overlap
    [all...]
  /external/chromium_org/content/child/
websocket_bridge.h 42 virtual void flowControl(int64_t quota) OVERRIDE;
64 void DidReceiveFlowControl(int64_t quota);
  /external/chromium_org/content/browser/quota/
mock_quota_manager.cc 5 #include "content/browser/quota/mock_quota_manager.h"
30 MockQuotaManager::StorageInfo::StorageInfo() : usage(0), quota(kint64max) {}
52 callback.Run(storage::kQuotaStatusOk, info.usage, info.quota);
56 int64 quota) {
57 usage_and_quota_map_[std::make_pair(origin, type)].quota = quota;
  /external/chromium_org/android_webview/native/
aw_quota_manager_bridge_impl.cc 18 #include "storage/browser/quota/quota_manager.h"
19 #include "storage/common/quota/quota_types.h"
54 int64 quota);
116 int64 quota) {
121 quota_.push_back(quota);
270 const std::vector<int64>& quota) {
283 base::android::ToJavaLongArray(env, quota).obj());
292 int64 quota) {
296 quota = 0;
301 base::Bind(ui_callback, usage, quota));
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper_unittest.cc 16 #include "storage/browser/quota/quota_manager.h"
17 #include "storage/browser/quota/quota_manager_proxy.h"
82 void SetPersistentHostQuota(const std::string& host, int64 quota) {
85 host, quota,
98 void GotPersistentHostQuota(storage::QuotaStatusCode status, int64 quota) {
100 quota_ = quota;
107 int64 quota() { function in class:BrowsingDataQuotaHelperTest
201 EXPECT_EQ(0, quota());
205 EXPECT_EQ(10, quota());
  /external/chromium_org/content/browser/
quota_dispatcher_host.cc 13 #include "storage/browser/quota/quota_manager.h"
82 QuotaStatusCode status, int64 usage, int64 quota) {
89 request_id(), usage, quota));
110 // Convert the requested size from uint64 to int64 since the quota backend
139 int64 quota) {
149 requested_quota_ <= quota) {
155 current_quota_ = quota;
167 int64 quota) {
168 DidFinish(status, usage, std::min(requested_quota_, quota));
176 // User didn't allow the new quota. Just returning the current quota
    [all...]
  /external/chromium_org/chrome/browser/resources/quota_internals/
event_handler.js 168 * Root of the quota data tree,
262 * Event Handler for |cr.quota.onAvailableSpaceUpdated|.
276 * Event Handler for |cr.quota.onGlobalInfoUpdated|.
283 * Total storage usage of unlimited-quota origins.
284 * |quota|:
285 * Total quota of the storage.
287 * |usage|, |unlimitedUsage| and |quota| can be missing,
297 * quota: {?string}
310 * Event Handler for |cr.quota.onPerHostInfoUpdated|.
318 * |quota|
    [all...]
  /external/chromium_org/content/browser/renderer_host/
websocket_host.h 66 void OnFlowControl(int64 quota);

Completed in 1153 milliseconds

1 2 34 5 6 7 8 91011>>