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

1 2 34 5

  /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/content/common/dom_storage/
dom_storage_map.h 19 // tracks the size in bytes of the keys/values, enforcing a quota.
24 explicit DOMStorageMap(size_t quota);
35 // this method does not do quota checking.
46 size_t quota() const { return quota_; } function in class:content::DOMStorageMap
47 void set_quota(size_t quota) { quota_ = quota; }
  /external/chromium_org/storage/browser/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);
quota_database.h 19 #include "storage/common/quota/quota_types.h"
50 bool GetHostQuota(const std::string& host, StorageType type, int64* quota);
51 bool SetHostQuota(const std::string& host, StorageType type, int64 quota);
100 int64 quota);
103 int64 quota; member in struct:storage::QuotaDatabase::QuotaTableEntry
quota_manager.h 23 #include "storage/browser/quota/quota_callbacks.h"
24 #include "storage/browser/quota/quota_client.h"
25 #include "storage/browser/quota/quota_database.h"
26 #include "storage/browser/quota/quota_task.h"
27 #include "storage/browser/quota/special_storage_policy.h"
28 #include "storage/browser/quota/storage_observer.h"
62 int64 quota; member in struct:storage::UsageAndQuota
68 int64 quota,
109 // The quota manager class. This class is instantiated per profile and
119 int64 /* quota */)>
    [all...]
quota_manager.cc 5 #include "storage/browser/quota/quota_manager.h"
26 #include "storage/browser/quota/quota_database.h"
27 #include "storage/browser/quota/quota_manager_proxy.h"
28 #include "storage/browser/quota/quota_temporary_storage_evictor.h"
29 #include "storage/browser/quota/storage_monitor.h"
30 #include "storage/browser/quota/usage_tracker.h"
31 #include "storage/common/quota/quota_types.h"
59 // Cap size for per-host persistent quota determined by the histogram.
70 // when returning the quota to unlimited apps/extensions.
118 int64* quota,
274 int64 quota = usage_and_quota.quota; local
    [all...]
  /external/iptables/include/linux/netfilter/
xt_quota2.h 19 aligned_u64 quota; member in struct:xt_quota_mtinfo2
  /external/chromium_org/content/browser/quota/
mock_quota_manager.h 14 #include "storage/browser/quota/quota_client.h"
15 #include "storage/browser/quota/quota_manager.h"
16 #include "storage/browser/quota/quota_task.h"
17 #include "storage/common/quota/quota_types.h"
32 // For usage/quota tracking test:
33 // Usage and quota information can be updated by following private helper
52 // called. The internal quota value can be updated by calling
78 // Helper method for updating internal quota info.
79 void SetQuota(const GURL& origin, StorageType type, int64 quota);
121 // Contains the essential information for each origin for usage/quota testing
129 int64 quota; member in struct:content::MockQuotaManager::StorageInfo
    [all...]
quota_database_unittest.cc 19 #include "storage/browser/quota/quota_database.h"
79 int64 quota = -1; local
80 EXPECT_FALSE(db.GetHostQuota(kHost, kStorageTypeTemporary, &quota));
81 EXPECT_FALSE(db.GetHostQuota(kHost, kStorageTypePersistent, &quota));
83 // Insert quota for temporary.
85 EXPECT_TRUE(db.GetHostQuota(kHost, kStorageTypeTemporary, &quota));
86 EXPECT_EQ(kQuota1, quota);
88 // Update quota for temporary.
90 EXPECT_TRUE(db.GetHostQuota(kHost, kStorageTypeTemporary, &quota));
91 EXPECT_EQ(kQuota2, quota);
    [all...]
quota_manager_unittest.cc 22 #include "storage/browser/quota/quota_database.h"
23 #include "storage/browser/quota/quota_manager.h"
24 #include "storage/browser/quota/quota_manager_proxy.h"
88 // Make sure the quota manager cleans up correctly.
325 void DidGetUsageAndQuota(QuotaStatusCode status, int64 usage, int64 quota) {
328 quota_ = quota;
332 int64 quota) {
334 quota_ = quota;
343 int64 quota) {
345 quota_ = quota;
411 int64 quota() const { return quota_; } function in class:content::QuotaManagerTest
    [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/chrome/browser/sync_file_system/local/
syncable_file_system_unittest.cc 18 #include "storage/browser/quota/quota_manager.h"
20 #include "storage/common/quota/quota_types.h"
130 int64 usage, quota; local
132 file_system_.GetUsageAndQuota(&usage, &quota));
134 // Returned quota must be what we overrode. Usage must be greater than 0
136 EXPECT_EQ(kQuota, quota);
149 file_system_.GetUsageAndQuota(&new_usage, &quota));
152 // Shrink the quota to the current usage, try to extend the file further
160 file_system_.GetUsageAndQuota(&new_usage, &quota));
169 file_system_.GetUsageAndQuota(&usage, &quota));
    [all...]
local_file_sync_context_unittest.cc 614 int64 quota = -1; local
616 file_system.GetUsageAndQuota(&initial_usage, &quota));
642 file_system.GetUsageAndQuota(&new_usage, &quota));
676 // The quota usage data must have reflected the deletion.
678 file_system.GetUsageAndQuota(&new_usage, &quota));
702 int64 quota = -1; local
704 file_system.GetUsageAndQuota(&initial_usage, &quota));
718 file_system.GetUsageAndQuota(&new_usage, &quota));
743 // The quota usage data must have reflected the deletion.
745 file_system.GetUsageAndQuota(&new_usage, &quota));
809 int64 quota = -1; local
    [all...]
  /external/chromium_org/content/child/
websocket_bridge.cc 175 void WebSocketBridge::DidReceiveFlowControl(int64_t quota) {
176 DVLOG(1) << "WebSocketBridge::DidReceiveFlowControl(" << quota << ")";
180 client_->didReceiveFlowControl(this, quota);
265 void WebSocketBridge::flowControl(int64_t quota) {
269 DVLOG(1) << "Bridge #" << channel_id_ << " FlowControl(" << quota << ")"; local
272 new WebSocketMsg_FlowControl(channel_id_, quota));
  /external/chromium_org/content/browser/renderer_host/
websocket_host.cc 103 virtual ChannelState OnFlowControl(int64 quota) OVERRIDE;
193 ChannelState WebSocketEventHandler::OnFlowControl(int64 quota) {
195 << " routing_id=" << routing_id_ << " quota=" << quota; local
197 return StateCast(dispatcher_->SendFlowControl(routing_id_, quota));
380 void WebSocketHost::OnFlowControl(int64 quota) {
382 << " routing_id=" << routing_id_ << " quota=" << quota; local
385 channel_->SendFlowControl(quota);
  /external/chromium_org/extensions/browser/
extension_function_dispatcher.cc 266 QuotaService* quota = extension_info_map->GetQuotaService();
267 std::string violation_error = quota->Assess(extension->id(),
370 // Skip all of the UMA, quota, event page, activity logging stuff if there
377 QuotaService* quota = extension_system->quota_service(); local
378 std::string violation_error = quota->Assess(extension->id(),
  /system/netd/server/
BandwidthController.h 105 : ifaceName(ifn), quota(q), alert(a) {};
107 int64_t quota; member in class:BandwidthController::QuotaInfo
134 std::string makeIptablesQuotaCmd(IptOp op, const char *costName, int64_t quota);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
extensions.py 798 _QUOTA_PARAM = 'quota'
837 quota = self._request.get_parameter_value(self._QUOTA_PARAM)
838 if quota is not None:
840 quota = int(quota)
843 if quota < 0 or quota >= 2 ** 32:
845 self._quota = quota
853 def set_quota(self, quota):
854 self._quota = quota
856 def quota(self): member in class:MuxExtensionProcessor
    [all...]
  /external/chromium_org/content/browser/fileapi/
file_system_operation_impl_unittest.cc 17 #include "content/browser/quota/mock_quota_manager.h"
18 #include "content/browser/quota/mock_quota_manager_proxy.h"
26 #include "storage/browser/quota/quota_manager.h"
27 #include "storage/browser/quota/quota_manager_proxy.h"
74 // Let the client go away before dropping a ref of the quota manager proxy.
115 // Grant enough quota for all test cases.
246 void GetUsageAndQuota(int64* usage, int64* quota) {
252 quota);
287 int64 quota; local
288 GetUsageAndQuota(NULL, &quota);
    [all...]
obfuscated_file_util_unittest.cc 32 #include "storage/browser/quota/quota_manager.h"
34 #include "storage/common/quota/quota_types.h"
264 int64 quota = -1; local
270 &quota);
575 // Verify that file creation requires sufficient quota for the path.
833 // Verify that file creation requires sufficient quota for the path.
857 // Verify that deleting a file isn't stopped by zero quota, and that it frees
    [all...]
  /external/chromium_org/net/cookies/
cookie_monster.cc 1935 size_t quota[3] = { local
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 571 int quota = UPLOAD_LIMIT; local
573 while (quota > 0) {
583 --quota;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 568 int quota = UPLOAD_LIMIT; local
570 while (quota > 0) {
580 --quota;
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 571 int quota = UPLOAD_LIMIT; local
573 while (quota > 0) {
583 --quota;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
TiledImageRenderer.java 571 int quota = UPLOAD_LIMIT; local
573 while (quota > 0) {
583 --quota;

Completed in 1017 milliseconds

1 2 34 5