Searched refs:storage (Results 226 - 250 of 1558) sorted by relevance

1234567891011>>

/external/skia/src/images/
H A DSkStreamHelpers.cpp13 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream) { argument
14 SkASSERT(storage != NULL);
19 void* dst = storage->reset(length);
38 void* dst = storage->reset(length);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache.h21 namespace storage { namespace
50 scoped_ptr<storage::BlobDataHandle>)>
58 base::WeakPtr<storage::BlobStorageContext> blob_context);
62 base::WeakPtr<storage::BlobStorageContext> blob_context);
102 base::WeakPtr<storage::BlobStorageContext> blob_context);
110 scoped_ptr<storage::BlobDataHandle> blob_data_handle,
135 base::WeakPtr<storage::BlobStorageContext> blob_storage_context_;
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_file_stream_reader.cc5 #include "storage/browser/fileapi/file_system_file_stream_reader.h"
12 #include "storage/browser/blob/file_stream_reader.h"
13 #include "storage/browser/fileapi/file_system_context.h"
14 #include "storage/browser/fileapi/file_system_operation_runner.h"
16 using storage::FileStreamReader;
20 namespace storage { namespace
23 storage::FileSystemContext* file_system_context,
24 const storage::FileSystemURL& url,
27 return new storage::FileSystemFileStreamReader(
31 } // namespace storage
33 namespace storage { namespace
[all...]
H A Dfile_system_quota_client.cc5 #include "storage/browser/fileapi/file_system_quota_client.h"
20 #include "storage/browser/fileapi/file_system_context.h"
21 #include "storage/browser/fileapi/file_system_quota_util.h"
22 #include "storage/browser/fileapi/file_system_usage_cache.h"
23 #include "storage/browser/fileapi/sandbox_file_system_backend.h"
24 #include "storage/common/fileapi/file_system_util.h"
27 using storage::StorageType;
29 namespace storage { namespace
60 void DidGetOrigins(const storage::QuotaClient::GetOriginsCallback& callback,
65 storage
[all...]
H A Disolated_file_system_backend.cc5 #include "storage/browser/fileapi/isolated_file_system_backend.h"
15 #include "storage/browser/blob/file_stream_reader.h"
16 #include "storage/browser/fileapi/async_file_util_adapter.h"
17 #include "storage/browser/fileapi/copy_or_move_file_validator.h"
18 #include "storage/browser/fileapi/dragged_file_util.h"
19 #include "storage/browser/fileapi/file_stream_writer.h"
20 #include "storage/browser/fileapi/file_system_context.h"
21 #include "storage/browser/fileapi/file_system_operation.h"
22 #include "storage/browser/fileapi/file_system_operation_context.h"
23 #include "storage/browse
30 namespace storage { namespace
[all...]
/external/opencv/cvaux/src/
H A Dextendededges.cpp47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
52 CvMemStorage* storage )
54 CvMemStorage* tmp_storage = cvCreateChildMemStorage( storage );
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/) argument
134 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer );
166 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer );
/external/chromium_org/content/browser/appcache/
H A Dappcache_service_impl.h22 #include "storage/browser/quota/quota_manager_proxy.h"
33 namespace storage { namespace
35 } // namespace storage
47 // Refcounted container to manage the lifetime of the old storage instance
52 AppCacheStorage* storage() const { return storage_.get(); } function in class:content::AppCacheStorageReference
56 AppCacheStorageReference(scoped_ptr<AppCacheStorage> storage);
72 // the lifetime of the old storage instance is a delicate process.
81 explicit AppCacheServiceImpl(storage::QuotaManagerProxy* quota_manager_proxy);
153 storage::SpecialStoragePolicy* special_storage_policy() const {
156 void set_special_storage_policy(storage
175 AppCacheStorage* storage() const { return storage_.get(); } function in class:content::AppCacheServiceImpl
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dencode.cc68 void EncodeVarLenUint8(int n, int* storage_ix, uint8_t* storage) { argument
70 WriteBits(1, 0, storage_ix, storage);
72 WriteBits(1, 1, storage_ix, storage);
74 WriteBits(3, nbits, storage_ix, storage);
76 WriteBits(nbits, n - (1 << nbits), storage_ix, storage);
146 int* storage_ix, uint8_t* storage) {
147 WriteBits(1, is_last, storage_ix, storage);
150 WriteBits(1, 1, storage_ix, storage);
153 WriteBits(1, 0, storage_ix, storage);
160 WriteBits(2, (num_bits - 13) >> 2, storage_ix, storage);
143 EncodeMetaBlockLength(size_t meta_block_size, bool is_last, bool is_uncompressed, int* storage_ix, uint8_t* storage) argument
171 StoreHuffmanTreeOfHuffmanTreeToBitMask( const uint8_t* code_length_bitdepth, int* storage_ix, uint8_t* storage) argument
210 StoreHuffmanTreeToBitMask( const uint8_t* huffman_tree, const uint8_t* huffman_tree_extra_bits, const int huffman_tree_size, const EntropyCode<kCodeLengthCodes>& entropy, int* storage_ix, uint8_t* storage) argument
234 StoreHuffmanCodeSimple( const EntropyCode<kSize>& code, int alphabet_size, int max_bits, int* storage_ix, uint8_t* storage) argument
272 StoreHuffmanCodeComplex( const EntropyCode<kSize>& code, int alphabet_size, int* storage_ix, uint8_t* storage) argument
300 BuildAndStoreEntropyCode(const Histogram<kSize>& histogram, const int tree_limit, const int alphabet_size, EntropyCode<kSize>* code, int* storage_ix, uint8_t* storage) argument
349 BuildAndStoreEntropyCodes( const std::vector<Histogram<kSize> >& histograms, int alphabet_size, std::vector<EntropyCode<kSize> >* entropy_codes, int* storage_ix, uint8_t* storage) argument
362 EncodeCommand(const Command& cmd, const EntropyCodeCommand& entropy, int* storage_ix, uint8_t* storage) argument
383 EncodeCopyDistance(const Command& cmd, const EntropyCodeDistance& entropy, int* storage_ix, uint8_t* storage) argument
575 EncodeContextMap(const std::vector<int>& context_map, int num_clusters, int* storage_ix, uint8_t* storage) argument
620 EncodeBlockLength(const EntropyCodeBlockLength& entropy, int length, int* storage_ix, uint8_t* storage) argument
656 BuildAndEncodeBlockSplitCode(const BlockSplit& split, BlockSplitCode* code, int* storage_ix, uint8_t* storage) argument
683 MoveAndEncode(const BlockSplitCode& code, BlockSplitIterator* it, int* storage_ix, uint8_t* storage) argument
794 StoreMetaBlock(const MetaBlock& mb, const bool is_last, const uint8_t* ringbuffer, const size_t mask, size_t* pos, int* storage_ix, uint8_t* storage) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.h15 #include "storage/browser/fileapi/file_system_operation_runner.h"
24 namespace storage { namespace
68 storage::FileSystemContext* GetFileSystemContextForExtensionId(
74 storage::FileSystemContext* GetFileSystemContextForRenderViewHost(
130 scoped_refptr<storage::FileSystemContext> file_system_context,
132 const storage::FileSystemOperationRunner::StatusCallback& callback);
/external/chromium_org/chrome/browser/extensions/api/sync_file_system/
H A Dsync_file_system_api.cc24 #include "storage/browser/fileapi/file_system_context.h"
25 #include "storage/browser/fileapi/file_system_url.h"
26 #include "storage/browser/quota/quota_manager.h"
27 #include "storage/common/fileapi/file_system_types.h"
28 #include "storage/common/fileapi/file_system_util.h"
71 scoped_refptr<storage::FileSystemContext> file_system_context =
75 storage::FileSystemURL file_system_url(
81 Bind(&storage::FileSystemContext::DeleteFileSystem,
125 Bind(&storage::FileSystemContext::OpenFileSystem,
128 storage
[all...]
H A Dsync_file_system_api.h15 #include "storage/browser/fileapi/file_system_url.h"
16 #include "storage/common/quota/quota_types.h"
18 namespace storage { namespace
70 typedef std::map<storage::FileSystemURL,
72 storage::FileSystemURL::Comparator> URLToStatusMap;
74 void DidGetFileStatus(const storage::FileSystemURL& file_system_url,
94 void DidGetUsageAndQuota(storage::QuotaStatusCode status,
113 storage::FileSystemContext* GetFileSystemContext();
/external/chromium_org/storage/browser/fileapi/quota/
H A Dquota_backend_impl.h10 #include "storage/browser/fileapi/quota/quota_reservation_manager.h"
11 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h"
12 #include "storage/browser/storage_browser_export.h"
13 #include "storage/common/quota/quota_status_code.h"
23 namespace storage { namespace
27 namespace storage { namespace
42 storage::QuotaManagerProxy* quota_manager_proxy);
80 storage::QuotaStatusCode status,
97 scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_;
104 } // namespace storage
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dretriever.cc19 #include <libaddressinput/storage.h>
40 ValidatingStorage* storage)
43 storage_(storage),
63 // Validating storage returns (false, key, stale-data) for valid but stale
104 Retriever::Retriever(const Source* source, Storage* storage) argument
105 : source_(source), storage_(new ValidatingStorage(storage)) {
37 Helper(const std::string& key, const Retriever::Callback& retrieved, const Source& source, ValidatingStorage* storage) argument
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database_unittest.cc120 DOMStorageValuesMap storage; local
121 CreateMapWithValues(&storage);
128 ASSERT_TRUE(db.CommitChanges(false, storage));
138 EXPECT_EQ(storage.size(), values.size());
142 storage.clear();
146 ASSERT_TRUE(db.CommitChanges(true, storage));
152 CreateMapWithValues(&storage);
155 ASSERT_TRUE(db.CommitChanges(false, storage));
162 ASSERT_TRUE(db.CommitChanges(false, storage));
163 DOMStorageValuesMap::iterator it = storage
241 DOMStorageValuesMap storage; local
251 DOMStorageValuesMap storage; local
[all...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Diphoto_file_util.cc19 #include "storage/browser/fileapi/file_system_operation_context.h"
20 #include "storage/browser/fileapi/file_system_url.h"
21 #include "storage/browser/fileapi/native_file_util.h"
22 #include "storage/common/blob/shareable_file_reference.h"
23 #include "storage/common/fileapi/directory_entry.h"
24 #include "storage/common/fileapi/file_system_util.h"
26 using storage::DirectoryEntry;
51 const storage::FileSystemURL& url) {
61 storage::VirtualPath::GetComponentsUTF8Unsafe(virtual_path, &result);
80 scoped_ptr<storage
[all...]
H A Diphoto_file_util_unittest.cc26 #include "storage/browser/fileapi/async_file_util.h"
27 #include "storage/browser/fileapi/external_mount_points.h"
28 #include "storage/browser/fileapi/file_system_context.h"
29 #include "storage/browser/fileapi/file_system_operation_context.h"
30 #include "storage/browser/fileapi/file_system_operation_runner.h"
33 using storage::FileSystemOperationContext;
34 using storage::FileSystemOperation;
35 using storage::FileSystemURL;
54 void ReadDirectoryTestHelper(storage::FileSystemOperationRunner* runner,
149 virtual storage
[all...]
H A Ditunes_file_util_unittest.cc25 #include "storage/browser/fileapi/async_file_util.h"
26 #include "storage/browser/fileapi/external_mount_points.h"
27 #include "storage/browser/fileapi/file_system_context.h"
28 #include "storage/browser/fileapi/file_system_operation_context.h"
29 #include "storage/browser/fileapi/file_system_operation_runner.h"
32 using storage::FileSystemOperationContext;
33 using storage::FileSystemOperation;
34 using storage::FileSystemURL;
52 void ReadDirectoryTestHelper(storage::FileSystemOperationRunner* runner,
123 virtual storage
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_quota_client_unittest.cc21 #include "storage/common/database/database_identifier.h"
25 static const storage::StorageType kTemp = storage::kStorageTypeTemporary;
26 static const storage::StorageType kPerm = storage::kStorageTypePersistent;
46 scoped_refptr<storage::QuotaManager> quota_manager =
79 int64 GetOriginUsage(storage::QuotaClient* client,
81 storage::StorageType type) {
94 const std::set<GURL>& GetOriginsForType(storage::QuotaClient* client,
95 storage
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_context_builder.cc140 URLRequestContextStorage* storage() { function in class:net::__anon9792::BasicURLRequestContext
246 URLRequestContextStorage* storage = context->storage(); local
248 storage->set_http_user_agent_settings(new StaticHttpUserAgentSettings(
254 storage->set_network_delegate(network_delegate);
257 storage->set_net_log(net_log_.release());
259 storage->set_net_log(new net::NetLog);
266 storage->set_host_resolver(host_resolver_.Pass());
290 storage->set_proxy_service(proxy_service_.release());
292 storage
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dasync_file_util.cc16 #include "storage/browser/fileapi/file_system_operation_context.h"
17 #include "storage/browser/fileapi/file_system_url.h"
18 #include "storage/common/blob/shareable_file_reference.h"
111 storage::ScopedFile::ScopeOutPolicy scope_out_policy) {
117 scoped_refptr<storage::ShareableFileReference> file_reference =
118 storage::ShareableFileReference::GetOrCreate(storage::ScopedFile(
132 scoped_ptr<storage::FileSystemOperationContext> context,
133 const storage::FileSystemURL& url,
157 scoped_ptr<storage
[all...]
/external/llvm/include/llvm/ADT/
H A DOptional.h29 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
35 new (storage.buffer) T(y);
39 new (storage.buffer) T(*O);
43 new (storage.buffer) T(std::forward<T>(y));
47 new (storage.buffer) T(std::move(*O));
55 new (storage.buffer) T(std::move(y));
83 new (storage.buffer) T(y);
108 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
109 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_system_util_unittest.cc21 #include "storage/browser/fileapi/external_mount_points.h"
22 #include "storage/browser/fileapi/file_system_backend.h"
23 #include "storage/browser/fileapi/file_system_context.h"
24 #include "storage/browser/fileapi/file_system_url.h"
25 #include "storage/browser/fileapi/isolated_context.h"
130 scoped_refptr<storage::ExternalMountPoints> mount_points =
131 storage::ExternalMountPoints::CreateRefCounted();
132 scoped_refptr<storage::FileSystemContext> context(
133 new storage::FileSystemContext(
139 ScopedVector<storage
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_file_validator_unittest.cc14 #include "storage/browser/fileapi/copy_or_move_file_validator.h"
15 #include "storage/browser/fileapi/external_mount_points.h"
16 #include "storage/browser/fileapi/file_system_backend.h"
17 #include "storage/browser/fileapi/file_system_context.h"
18 #include "storage/browser/fileapi/file_system_url.h"
19 #include "storage/browser/fileapi/isolated_context.h"
20 #include "storage/common/blob/shareable_file_reference.h"
21 #include "storage/common/fileapi/file_system_util.h"
25 using storage::CopyOrMoveFileValidator;
26 using storage
[all...]
/external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
H A Dread_directory.cc20 storage::AsyncFileUtil::EntryList* output) {
32 storage::DirectoryEntry output_entry;
59 const storage::AsyncFileUtil::ReadDirectoryCallback& callback)
87 storage::AsyncFileUtil::EntryList entry_list;
95 storage::AsyncFileUtil::EntryList(),
107 error, storage::AsyncFileUtil::EntryList(), false /* has_more */);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DImage9.h45 virtual void setManagedSurface2D(TextureStorage *storage, int level);
46 virtual void setManagedSurfaceCube(TextureStorage *storage, int face, int level);
47 virtual bool copyToStorage2D(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height);
48 virtual bool copyToStorageCube(TextureStorage *storage, int face, int level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height);
49 virtual bool copyToStorage3D(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth);
50 virtual bool copyToStorage2DArray(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height);

Completed in 732 milliseconds

1234567891011>>