HomeSort by relevance Sort by last modified time
    Searched full:quota (Results 1 - 25 of 691) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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_quota.man 6 [\fB!\fP] \fB\-\-quota\fP \fIbytes\fP
7 The quota in bytes.
  /external/chromium_org/content/common/
quota_messages.h 10 #include "webkit/common/quota/quota_types.h"
14 IPC_ENUM_TRAITS(quota::StorageType)
15 IPC_ENUM_TRAITS(quota::QuotaStatusCode)
17 // Quota messages sent from the browser to the child process.
30 quota::QuotaStatusCode /* error */)
32 // Quota messages sent from the child process to the browser.
37 quota::StorageType /* type */)
43 quota::StorageType /* type */,
  /external/chromium_org/webkit/common/quota/
quota_types.h 8 #include "webkit/common/quota/quota_status_code.h"
10 namespace quota { namespace
25 } // namespace quota
quota_status_code.cc 6 #include "webkit/common/quota/quota_status_code.h"
8 namespace quota { namespace
21 return "Quota operation aborted.";
29 } // namespace quota
  /external/chromium_org/content/browser/indexed_db/
indexed_db_quota_client.h 15 #include "webkit/browser/quota/quota_client.h"
16 #include "webkit/browser/quota/quota_task.h"
17 #include "webkit/common/quota/quota_types.h"
23 // with the quota management system. This interface is used
24 // on the IO thread by the quota manager.
25 class IndexedDBQuotaClient : public quota::QuotaClient,
26 public quota::QuotaTaskObserver {
36 quota::StorageType type,
38 virtual void GetOriginsForType(quota::StorageType type,
40 virtual void GetOriginsForHost(quota::StorageType type
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
quota.test 19 do_test quota-1.1 { sqlite3_quota_initialize nosuchvfs 1 } {SQLITE_ERROR}
20 do_test quota-1.2 { sqlite3_quota_initialize "" 1 } {SQLITE_OK}
21 do_test quota-1.3 { sqlite3_quota_initialize "" 1 } {SQLITE_MISUSE}
22 do_test quota-1.4 { sqlite3_quota_shutdown } {SQLITE_OK}
24 do_test quota-1.5 { sqlite3_quota_initialize "" 0 } {SQLITE_OK}
25 do_test quota-1.6 { sqlite3_quota_shutdown } {SQLITE_OK}
26 do_test quota-1.7 { sqlite3_quota_initialize "" 1 } {SQLITE_OK}
27 do_test quota-1.8 { sqlite3_quota_shutdown } {SQLITE_OK}
34 # quota-2.1.*: Test that SQLITE_FULL is returned if the database would
35 # exceed the configured quota
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_proxy.h 17 #include "webkit/browser/quota/quota_manager.h"
18 #include "webkit/common/quota/quota_types.h"
38 void RequestInfo(scoped_refptr<quota::QuotaManager> quota_manager);
46 typedef quota::QuotaManager::QuotaTableEntries QuotaTableEntries;
47 typedef quota::QuotaManager::OriginInfoTableEntries OriginInfoTableEntries;
58 void DidGetAvailableSpace(quota::QuotaStatusCode status, int64 space);
59 void DidGetGlobalQuota(quota::StorageType type,
60 quota::QuotaStatusCode status,
61 int64 quota);
62 void DidGetGlobalUsage(quota::StorageType type
    [all...]
quota_internals_types.h 13 #include "webkit/common/quota/quota_types.h"
21 // Represends global usage and quota information for specific type of storage.
24 explicit GlobalStorageInfo(quota::StorageType type);
35 void set_quota(int64 quota) {
36 quota_ = quota;
43 quota::StorageType type_;
50 // Represents per host usage and quota information for the storage.
53 PerHostStorageInfo(const std::string& host, quota::StorageType type);
60 void set_quota(int64 quota) {
61 quota_ = quota;
    [all...]
  /external/chromium_org/content/shell/
shell_quota_permission_context.cc 7 #include "webkit/common/quota/quota_types.h"
15 quota::StorageType type,
20 if (type != quota::kStorageTypePersistent) {
21 // For now we only support requesting quota with this interface
  /external/chromium_org/webkit/browser/database/
database_quota_client.h 13 #include "webkit/browser/quota/quota_client.h"
15 #include "webkit/common/quota/quota_types.h"
22 // with the quota management system. This interface is used
23 // on the IO thread by the quota manager.
25 : public quota::QuotaClient {
36 quota::StorageType type,
38 virtual void GetOriginsForType(quota::StorageType type,
40 virtual void GetOriginsForHost(quota::StorageType type,
44 quota::StorageType type,
  /external/kernel-headers/original/linux/netfilter/
xt_quota.h 12 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_quota.h 12 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_quota.h 12 aligned_u64 quota; member in struct:xt_quota_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_quota.h 12 aligned_u64 quota; member in struct:xt_quota_info
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper_unittest.cc 15 #include "webkit/browser/quota/mock_storage_client.h"
16 #include "webkit/browser/quota/quota_manager.h"
34 quota_manager_ = new quota::QuotaManager(
69 void RegisterClient(const quota::MockOriginData* data, std::size_t data_len) {
70 quota::MockStorageClient* client =
71 new quota::MockStorageClient(
72 quota_manager_->proxy(), data, quota::QuotaClient::kFileSystem,
78 void SetPersistentHostQuota(const std::string& host, int64 quota) {
81 host, quota,
94 void GotPersistentHostQuota(quota::QuotaStatusCode status
104 int64 quota() { function in class:BrowsingDataQuotaHelperTest
    [all...]
browsing_data_quota_helper_impl.h 17 #include "webkit/common/quota/quota_types.h"
21 namespace quota { namespace
36 quota::QuotaManager* quota_manager);
42 void GotOrigins(const std::set<GURL>& origins, quota::StorageType type);
45 void GetHostUsage(const std::string& host, quota::StorageType type);
49 quota::StorageType type,
53 void DidRevokeHostQuota(quota::QuotaStatusCode status, int64 quota);
55 scoped_refptr<quota::QuotaManager> quota_manager_;
58 typedef std::set<std::pair<std::string, quota::StorageType> > PendingHosts
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
dqblk_v1.h 2 * File with in-memory structures of old quota format
8 /* Id of quota format */
dqblk_v2.h 2 * Definitions of structures for vfsv0 quota format
10 /* id numbers of quota format */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dqblk_v1.h 2 * File with in-memory structures of old quota format
8 /* Id of quota format */
dqblk_v2.h 2 * Definitions of structures for vfsv0 quota format
10 /* id numbers of quota format */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dqblk_v1.h 2 * File with in-memory structures of old quota format
8 /* Id of quota format */
dqblk_v2.h 2 * Definitions of structures for vfsv0 quota format
10 /* id numbers of quota format */
  /external/chromium_org/content/browser/
quota_dispatcher_host.cc 13 #include "webkit/browser/quota/quota_manager.h"
15 using quota::QuotaClient;
16 using quota::QuotaManager;
17 using quota::QuotaStatusCode;
18 using quota::StorageType;
46 quota::QuotaManager* quota_manager() const {
81 QuotaStatusCode status, int64 usage, int64 quota) {
84 if (status != quota::kQuotaStatusOk) {
88 request_id(), usage, quota));
119 DCHECK(type_ == quota::kStorageTypeTemporary |
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_quota_client.h 17 #include "webkit/browser/quota/quota_client.h"
18 #include "webkit/browser/quota/quota_task.h"
20 #include "webkit/common/quota/quota_types.h"
29 // with the quota management system. The QuotaClient interface is
30 // used on the IO thread by the quota manager. This class deletes
31 // itself when both the quota manager and the appcache service have
33 class AppCacheQuotaClient : public quota::QuotaClient {
43 quota::StorageType type,
45 virtual void GetOriginsForType(quota::StorageType type,
47 virtual void GetOriginsForHost(quota::StorageType type
    [all...]

Completed in 278 milliseconds

1 2 3 4 5 6 7 8 91011>>