Searched refs:storage (Results 151 - 175 of 1558) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dentry_watcher_service.cc16 #include "storage/browser/fileapi/file_system_context.h"
31 storage::FileSystemContext* GetFileSystemContextImpl(
66 const storage::FileSystemURL& url,
68 const storage::WatcherManager::StatusCallback& callback) {
77 storage::FileSystemContext* const context =
81 storage::WatcherManager* const watcher_manager =
96 base::Bind(&storage::WatcherManager::WatchDirectory,
111 const storage::FileSystemURL& url,
112 const storage::WatcherManager::StatusCallback& callback) {
113 storage
[all...]
/external/chromium_org/v8/src/base/
H A Dlazy-instance.h102 static T* MutableInstance(StorageType* storage) { argument
103 return reinterpret_cast<T*>(storage);
107 static void InitStorageUsingTrait(StorageType* storage) { argument
108 ConstructTrait::Construct(MutableInstance(storage));
117 static T* MutableInstance(StorageType* storage) { argument
118 return *storage;
122 static void InitStorageUsingTrait(StorageType* storage) { argument
123 *storage = CreateTrait::Create();
147 static void Init(OnceType* once, Function function, Storage storage) { argument
148 CallOnce(once, function, storage);
156 Init(OnceType* once, Function function, Storage storage) argument
173 InitInstance(StorageType* storage) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/fileapi/
H A Dexternal_file_url_request_job.h17 #include "storage/browser/blob/file_stream_reader.h"
18 #include "storage/browser/fileapi/file_system_url.h"
38 const scoped_refptr<storage::FileSystemContext>& file_system_context,
39 const storage::FileSystemURL& file_system_url,
66 const scoped_refptr<storage::FileSystemContext>& file_system_context,
67 const storage::FileSystemURL& file_system_url,
86 scoped_refptr<storage::FileSystemContext> file_system_context_;
87 storage::FileSystemURL file_system_url_;
89 scoped_ptr<storage::FileStreamReader> stream_reader_;
/external/chromium_org/content/browser/appcache/
H A Dappcache_quota_client.h18 #include "storage/browser/quota/quota_client.h"
19 #include "storage/browser/quota/quota_task.h"
20 #include "storage/common/quota/quota_types.h"
32 class AppCacheQuotaClient : public storage::QuotaClient {
42 storage::StorageType type,
44 virtual void GetOriginsForType(storage::StorageType type,
46 virtual void GetOriginsForHost(storage::StorageType type,
50 storage::StorageType type,
52 virtual bool DoesSupport(storage::StorageType type) const OVERRIDE;
63 void GetOriginsHelper(storage
[all...]
H A Dappcache_storage.cc12 #include "storage/browser/quota/quota_client.h"
13 #include "storage/browser/quota/quota_manager_proxy.h"
31 Delegate* delegate, AppCacheStorage* storage)
32 : delegate(delegate), storage(storage) {
33 storage->delegate_references_.insert(
39 storage->delegate_references_.erase(delegate);
46 AppCacheStorage* storage)
47 : storage_(storage),
108 storage
30 DelegateReference( Delegate* delegate, AppCacheStorage* storage) argument
42 ResponseInfoLoadTask( const GURL& manifest_url, int64 group_id, int64 response_id, AppCacheStorage* storage) argument
[all...]
H A Dappcache_quota_client_unittest.cc19 static const storage::StorageType kTemp = storage::kStorageTypeTemporary;
20 static const storage::StorageType kPerm = storage::kStorageTypePersistent;
34 delete_status_(storage::kQuotaStatusUnknown),
40 int64 GetOriginUsage(storage::QuotaClient* client,
42 storage::StorageType type) {
49 const std::set<GURL>& GetOriginsForType(storage::QuotaClient* client,
50 storage::StorageType type) {
57 const std::set<GURL>& GetOriginsForHost(storage
[all...]
/external/chromium_org/content/public/browser/
H A Dstorage_partition.h22 namespace storage { namespace
30 namespace storage { namespace
35 namespace storage { namespace
51 // isolated storage where a renderer with isolated storage cannot see
58 virtual storage::QuotaManager* GetQuotaManager() = 0;
60 virtual storage::FileSystemContext* GetFileSystemContext() = 0;
61 virtual storage::DatabaseTracker* GetDatabaseTracker() = 0;
77 // Corresponds to storage::kStorageTypeTemporary.
79 // Corresponds to storage
[all...]
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_proxy.cc25 scoped_refptr<storage::QuotaManager> quota_manager) {
42 storage::kStorageTypeTemporary));
45 storage::kStorageTypeTemporary,
48 storage::kStorageTypeTemporary));
51 storage::kStorageTypePersistent,
54 storage::kStorageTypePersistent));
57 storage::kStorageTypeSyncable,
60 storage::kStorageTypeSyncable));
99 void QuotaInternalsProxy::DidGetAvailableSpace(storage::QuotaStatusCode status,
101 if (status == storage
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_storage_unittest.cc94 ServiceWorkerStorage* storage, int64 id,
98 storage->CreateResponseWriter(id);
120 ServiceWorkerStorage* storage, int64 id,
124 WriteResponse(storage, id, headers, body_buffer.get(), body.length());
127 void WriteBasicResponse(ServiceWorkerStorage* storage, int64 id) { argument
129 storage->CreateResponseWriter(id);
134 WriteStringResponse(storage, id, headers, std::string(kHttpBody));
137 bool VerifyBasicResponse(ServiceWorkerStorage* storage, int64 id, argument
141 storage->CreateResponseReader(id);
177 void WriteResponseOfSize(ServiceWorkerStorage* storage, int6 argument
93 WriteResponse( ServiceWorkerStorage* storage, int64 id, const std::string& headers, IOBuffer* body, int length) argument
119 WriteStringResponse( ServiceWorkerStorage* storage, int64 id, const std::string& headers, const std::string& body) argument
212 ServiceWorkerStorage* storage() { return context_->storage(); } function in class:content::ServiceWorkerStorageTest
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dplugin_private_file_system_backend_unittest.cc15 #include "storage/browser/fileapi/file_system_context.h"
16 #include "storage/browser/fileapi/isolated_context.h"
17 #include "storage/browser/fileapi/obfuscated_file_util.h"
18 #include "storage/browser/fileapi/plugin_private_file_system_backend.h"
19 #include "storage/common/fileapi/file_system_util.h"
23 using storage::FileSystemContext;
24 using storage::FileSystemURL;
25 using storage::IsolatedContext;
34 const storage::FileSystemType kType = storage
[all...]
H A Dupload_file_system_file_element_reader.h14 namespace storage { namespace
18 namespace storage { namespace
29 storage::FileSystemContext* file_system_context,
48 scoped_refptr<storage::FileSystemContext> file_system_context_;
54 scoped_ptr<storage::FileStreamReader> stream_reader_;
H A Dfileapi_message_filter.h21 #include "storage/browser/fileapi/file_system_context.h"
22 #include "storage/browser/fileapi/file_system_operation_runner.h"
23 #include "storage/common/blob/blob_data.h"
24 #include "storage/common/fileapi/file_system_types.h"
25 #include "storage/common/quota/quota_types.h"
34 namespace storage { namespace
50 namespace storage { namespace
65 storage::FileSystemContext* file_system_context,
71 storage::FileSystemContext* file_system_context,
88 typedef storage
[all...]
H A Dchrome_blob_storage_context.h13 namespace storage { namespace
40 storage::BlobStorageContext* context() const { return context_.get(); }
57 scoped_ptr<storage::BlobStorageContext> context_;
/external/chromium_org/content/browser/
H A Dstorage_partition_impl.h18 #include "storage/browser/quota/special_storage_policy.h"
31 storage::QuotaManager* quota_manager);
33 storage::SpecialStoragePolicy* special_storage_policy);
39 virtual storage::QuotaManager* GetQuotaManager() OVERRIDE;
41 virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE;
42 virtual storage::DatabaseTracker* GetDatabaseTracker() OVERRIDE;
101 // StoragePartition's on-disk storage.
112 storage::QuotaManager* quota_manager,
114 storage::FileSystemContext* filesystem_context,
115 storage
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dsandbox_file_system_backend.cc5 #include "storage/browser/fileapi/sandbox_file_system_backend.h"
12 #include "storage/browser/blob/file_stream_reader.h"
13 #include "storage/browser/fileapi/async_file_util_adapter.h"
14 #include "storage/browser/fileapi/copy_or_move_file_validator.h"
15 #include "storage/browser/fileapi/file_stream_writer.h"
16 #include "storage/browser/fileapi/file_system_context.h"
17 #include "storage/browser/fileapi/file_system_operation.h"
18 #include "storage/browser/fileapi/file_system_operation_context.h"
19 #include "storage/browser/fileapi/file_system_options.h"
20 #include "storage/browse
32 namespace storage { namespace
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Duniform_initializer_utils.cpp31 fill_storage_array_with_sentinels(gl_constant_value *storage, argument
36 storage[i].u = 0xDEADBEEF;
39 storage[data_size + i].u = 0xBADDC0DE;
46 red_zone_is_intact(gl_constant_value *storage, argument
53 if (storage[idx].u != 0xBADDC0DE)
55 << "storage[" << idx << "].u = " << storage[idx].u
176 * \param storage Backing storage for the uniform
177 * \param storage_array_size Array size of the backing storage
185 verify_data(gl_constant_value *storage, unsigned storage_array_size, ir_constant *val, unsigned red_zone_size) argument
[all...]
/external/mesa3d/src/glsl/tests/
H A Duniform_initializer_utils.cpp31 fill_storage_array_with_sentinels(gl_constant_value *storage, argument
36 storage[i].u = 0xDEADBEEF;
39 storage[data_size + i].u = 0xBADDC0DE;
46 red_zone_is_intact(gl_constant_value *storage, argument
53 if (storage[idx].u != 0xBADDC0DE)
55 << "storage[" << idx << "].u = " << storage[idx].u
176 * \param storage Backing storage for the uniform
177 * \param storage_array_size Array size of the backing storage
185 verify_data(gl_constant_value *storage, unsigned storage_array_size, ir_constant *val, unsigned red_zone_size) argument
[all...]
/external/openssl/crypto/
H A Dex_data.c407 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
417 storage = OPENSSL_malloc(mx * sizeof(CRYPTO_EX_DATA_FUNCS*));
418 if(!storage)
421 storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(item->meth,i);
425 if((mx > 0) && !storage)
432 if(storage[i] && storage[i]->new_func)
435 storage[i]->new_func(obj,ptr,ad,i,
436 storage[i]->argl,storage[
450 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
497 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
[all...]
/external/chromium_org/chrome/browser/prefs/tracked/
H A Ddictionary_hash_store_contents.cc21 explicit MutablePreferenceMacDictionary(base::DictionaryValue* storage);
33 base::DictionaryValue* storage)
34 : storage_(storage) {
51 base::DictionaryValue* storage)
52 : storage_(storage) {
32 MutablePreferenceMacDictionary( base::DictionaryValue* storage) argument
50 DictionaryHashStoreContents( base::DictionaryValue* storage) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_operation_runner.h17 #include "storage/browser/fileapi/file_system_url.h"
19 namespace storage { namespace
44 virtual const std::vector<storage::FileSystemURL>& target_paths() const = 0;
60 virtual void OnSyncEnabled(const storage::FileSystemURL& url) OVERRIDE;
61 virtual void OnWriteEnabled(const storage::FileSystemURL& url) OVERRIDE;
77 const std::vector<storage::FileSystemURL>& target_paths);
/external/chromium_org/storage/browser/database/
H A Ddatabase_quota_client.cc5 #include "storage/browser/database/database_quota_client.h"
17 #include "storage/browser/database/database_tracker.h"
18 #include "storage/browser/database/database_util.h"
19 #include "storage/common/database/database_identifier.h"
21 using storage::QuotaClient;
23 namespace storage { namespace
31 if (db_tracker->GetOriginInfo(storage::GetIdentifierFromOrigin(origin_url),
45 GURL origin = storage::GetOriginFromIdentifier(*iter);
60 GURL origin = storage::GetOriginFromIdentifier(*iter);
83 storage
[all...]
/external/chromium_org/content/browser/quota/
H A Dquota_backend_impl_unittest.cc5 #include "storage/browser/fileapi/quota/quota_backend_impl.h"
11 #include "storage/browser/fileapi/file_system_usage_cache.h"
12 #include "storage/browser/fileapi/obfuscated_file_util.h"
13 #include "storage/browser/quota/quota_manager_proxy.h"
18 using storage::FileSystemUsageCache;
19 using storage::ObfuscatedFileUtil;
20 using storage::QuotaBackendImpl;
21 using storage::SandboxFileSystemBackendDelegate;
41 class MockQuotaManagerProxy : public storage::QuotaManagerProxy {
51 virtual void SetUsageCacheEnabled(storage
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_quota_helper_unittest.cc16 #include "storage/browser/quota/quota_manager.h"
17 #include "storage/browser/quota/quota_manager_proxy.h"
37 quota_manager_ = new storage::QuotaManager(
76 storage::QuotaClient::kFileSystem,
98 void GotPersistentHostQuota(storage::QuotaStatusCode status, int64 quota) {
99 EXPECT_EQ(storage::kQuotaStatusOk, status);
118 scoped_refptr<storage::QuotaManager> quota_manager_;
140 {"http://example.com/", storage::kStorageTypeTemporary, 1},
141 {"https://example.com/", storage::kStorageTypeTemporary, 10},
142 {"http://example.com/", storage
[all...]
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dfake_provided_file_system.h75 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
83 const storage::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
89 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
99 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
103 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
106 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
110 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
114 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
118 const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
124 const storage
[all...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dreadahead_file_stream_reader.h12 #include "storage/browser/blob/file_stream_reader.h"
16 : public NON_EXPORTED_BASE(storage::FileStreamReader) {
19 explicit ReadaheadFileStreamReader(storage::FileStreamReader* source);
41 scoped_ptr<storage::FileStreamReader> source_;

Completed in 806 milliseconds

1234567891011>>