/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
gfs2_ondisk.h | 121 /* In gfs1, quota and license dinodes followed */ 173 * quota linked list: user quotas and group quotas form two separate 177 Given the uid/gid, how to calculate the quota file offsets for the corresponding 192 | | | | |<-- user quota list | 193 \______|___________/ \______|___________/ group quota list -->| 200 * quota structure 207 __be32 qu_ll_next; /* location of next quota in list */ 424 * Quota change
|
quotaio_v1.h | 16 * The following structure defines the format of the disk quota file
|
/system/netd/ |
BandwidthController.cpp | 51 #define ALERT_IPT_TEMPLATE "%s %s -m quota2 ! --quota %lld --name %s" 68 * - quota'd rules in the costly chain should be before bw_penalty_box lookups. 72 * * global quota vs per interface quota 73 * - global quota for all costly interfaces uses a single costly chain: 78 * iptables -I bw_costly_shared -m quota \! --quota 500000 \ 88 * - quota per interface. This is achieve by having "costly" chains per quota. 89 * E.g. adding a new costly interface iface0 with its own quota [all...] |
/external/chromium_org/content/renderer/pepper/ |
pepper_file_io_host.cc | 57 virtual void DidQueryStorageUsageAndQuota(int64 usage, int64 quota) OVERRIDE { 58 callback_.Run(std::max(static_cast<int64>(0), quota - usage)); 63 virtual void DidFail(quota::QuotaStatusCode error) OVERRIDE { 77 quota::StorageType type, 98 quota::QuotaLimitType quota_policy, 110 quota::QuotaLimitType quota_policy) { 129 quota::kQuotaLimitTypeUnknown, 142 quota_policy_(quota::kQuotaLimitTypeUnknown), 459 quota_policy_ != quota::kQuotaLimitTypeUnlimited) 534 // the plugin can't write and so bypass our quota checks [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
copy_or_move_operation_delegate_unittest.cc | 24 #include "webkit/browser/quota/mock_quota_manager.h" 25 #include "webkit/browser/quota/quota_manager.h" 129 new quota::MockQuotaManager(false /* is_incognito */, 134 quota_manager_proxy_ = new quota::MockQuotaManagerProxy( 161 // Grant relatively big quota initially. 299 void GetUsageAndQuota(FileSystemType type, int64* usage, int64* quota) { 300 quota::QuotaStatusCode status = AsyncFileTestHelper::GetUsageAndQuota( 301 quota_manager_.get(), origin_, type, usage, quota); 302 ASSERT_EQ(quota::kQuotaStatusOk, status); 314 scoped_refptr<quota::MockQuotaManagerProxy> quota_manager_proxy_ [all...] |
file_system_context.h | 35 namespace quota { namespace 99 quota::SpecialStoragePolicy* special_storage_policy, 100 quota::QuotaManagerProxy* quota_manager_proxy, 107 quota::QuotaManagerProxy* quota_manager_proxy() const { 114 // Returns a quota util for a given filesystem type. This may 116 // it is not a quota-managed storage. 284 scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
|
file_system_operation_impl.cc | 24 #include "webkit/browser/quota/quota_manager.h" 28 #include "webkit/common/quota/quota_types.h" 327 quota::QuotaManagerProxy* quota_manager_proxy = 331 // If we don't have the quota manager or the requested filesystem type 332 // does not support quota, we should be able to let it go. 350 quota::QuotaStatusCode status, 351 int64 usage, int64 quota) { 352 if (status != quota::kQuotaStatusOk) { 353 LOG(WARNING) << "Got unexpected quota error : " << status; 358 operation_context_->set_allowed_bytes_growth(quota - usage) [all...] |
/external/chromium_org/chrome/browser/extensions/api/storage/ |
settings_quota_unittest.cc | 74 // Quota enforcing storage area being tested. 124 // Should be able to set value to other under-quota value. 152 // Should be able to set existing key to other value without going over quota. 175 // quota. 191 // Not enough quota. 195 // Try again with "b" removed, enough quota. 202 // Enough byte quota but max keys not high enough. 240 // Still no quota. 263 // Still no quota. 272 // Test running out of byte quota [all...] |
settings_storage_quota_enforcer.cc | 19 const char* kQuotaExceededError = "* quota exceeded."; 21 // Resources there are a quota for. 56 // Returns an error result and logs the quota exceeded to UMA. 89 LOG(WARNING) << "Failed to get initial settings for quota: " <<
|
weak_unlimited_settings_storage.h | 13 // A ValueStore decorator which makes calls through |Set| ignore quota.
|
/bionic/libc/kernel/common/linux/netfilter/ |
xt_quota.h | 30 aligned_u64 quota; member in struct:xt_quota_info
|
/external/chromium/chrome/browser/ |
DEPS | 23 "+webkit/quota",
|
/external/chromium_org/chrome/browser/profiles/ |
profile_impl_io_data.h | 26 namespace quota { namespace 28 } // namespace quota 50 quota::SpecialStoragePolicy* special_storage_policy); 141 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy;
|
/external/chromium_org/content/browser/fileapi/ |
browser_file_system_helper.h | 29 quota::QuotaManagerProxy* quota_manager_proxy);
|
/external/chromium_org/content/common/dom_storage/ |
dom_storage_types.h | 20 // The quota for each storage area.
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
local_temp_file.h | 81 // For quota management. 100 // Completes the close operation after quota update. 122 // An identifier string used for quota request processing. The quota
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
database-threading-stress-test-2.html | 11 alert("Failed to open the database on disk. This is probably because the version was bad or there is not enough space left in this domain's quota");
|
/external/chromium_org/webkit/common/fileapi/ |
file_system_util.h | 16 #include "webkit/common/quota/quota_types.h" 94 // is used for the unified quota system. 98 QuotaStorageTypeToFileSystemType(quota::StorageType storage_type); 100 WEBKIT_STORAGE_COMMON_EXPORT quota::StorageType
|
file_system_util.cc | 187 quota::StorageType storage_type) { 189 case quota::kStorageTypeTemporary: 191 case quota::kStorageTypePersistent: 193 case quota::kStorageTypeSyncable: 195 case quota::kStorageTypeUnknown: 201 quota::StorageType FileSystemTypeToQuotaStorageType(FileSystemType type) { 204 return quota::kStorageTypeTemporary; 206 return quota::kStorageTypePersistent; 209 return quota::kStorageTypeSyncable; 211 return quota::kStorageTypeUnknown [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
quotaio_v1.h | 16 * The following structure defines the format of the disk quota file
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
quotaio_v1.h | 16 * The following structure defines the format of the disk quota file
|
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_remover_unittest.cc | 47 #include "webkit/browser/quota/mock_quota_manager.h" 48 #include "webkit/browser/quota/quota_manager.h" 49 #include "webkit/common/quota/quota_types.h" 83 const quota::StorageType kTemporary = quota::kStorageTypeTemporary; 84 const quota::StorageType kPersistent = quota::kStorageTypePersistent; 86 const quota::QuotaClient::ID kClientFile = quota::QuotaClient::kFileSystem; 87 const quota::QuotaClient::ID kClientDB = quota::QuotaClient::kIndexedDatabase [all...] |
browsing_data_remover.h | 22 #include "webkit/common/quota/quota_types.h" 40 namespace quota { namespace 159 // Quota managed data uses a different bitmask for types than 177 void OverrideQuotaManagerForTesting(quota::QuotaManager* quota_manager); 317 // Invoked on the IO thread to delete all storage types managed by the quota 324 quota::StorageType type); 326 // Callback responding to deletion of a single quota managed origin's 329 quota::StorageType type, 330 quota::QuotaStatusCode); 387 quota::QuotaManager* quota_manager_ [all...] |
browsing_data_remover.cc | 69 #include "webkit/browser/quota/quota_manager.h" 70 #include "webkit/browser/quota/special_storage_policy.h" 71 #include "webkit/common/quota/quota_types.h" 205 quota_client_mask |= quota::QuotaClient::kFileSystem; 207 quota_client_mask |= quota::QuotaClient::kDatabase; 209 quota_client_mask |= quota::QuotaClient::kAppcache; 211 quota_client_mask |= quota::QuotaClient::kIndexedDatabase; 606 quota::QuotaManager* quota_manager) { [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_sync_context_unittest.cc | 419 int64 quota = -1; local 420 EXPECT_EQ(quota::kQuotaStatusOk, 421 file_system.GetUsageAndQuota(&initial_usage, "a)); 446 EXPECT_EQ(quota::kQuotaStatusOk, 447 file_system.GetUsageAndQuota(&new_usage, "a)); 481 // The quota usage data must have reflected the deletion. 482 EXPECT_EQ(quota::kQuotaStatusOk, 483 file_system.GetUsageAndQuota(&new_usage, "a)); 545 int64 quota = -1; local 546 EXPECT_EQ(quota::kQuotaStatusOk [all...] |