HomeSort by relevance Sort by last modified time
    Searched refs:Backend (Results 76 - 100 of 126) sorted by null

1 2 34 5 6

  /external/chromium_org/net/disk_cache/blockfile/
disk_cache_perftest.cc 42 bool TimeWrite(int num_entries, disk_cache::Backend* cache,
94 bool TimeRead(int num_entries, disk_cache::Backend* cache,
168 scoped_ptr<disk_cache::Backend> cache;
backend_impl_v3.h 35 // This class implements the Backend interface. An object of this
37 class NET_EXPORT_PRIVATE BackendImplV3 : public Backend {
61 // Sets the cache type for this backend.
174 // Backend implementation.
backend_impl.h 47 // This class implements the Backend interface. An object of this
49 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
89 // Sets the cache type for this backend.
261 // Backend implementation.
276 // NOTE: The blockfile Backend::Iterator::OpenNextEntry method does not modify
  /external/chromium_org/net/tools/crash_cache/
crash_cache.cc 130 void FlushQueue(disk_cache::Backend* cache) {
140 disk_cache::Backend** cache,
143 disk_cache::BackendImpl* backend = new disk_cache::BackendImpl( local
145 backend->SetMaxSize(size);
146 backend->SetType(net::DISK_CACHE);
147 backend->SetFlags(disk_cache::kNoRandom);
148 int rv = backend->Init(cb->callback());
149 *cache = backend;
157 disk_cache::Backend* cache;
194 disk_cache::Backend* cache
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.h 30 #include "dex/backend.h"
46 Backend* PortableCodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph,
50 class MirConverter : public Backend {
55 : Backend(arena),
  /external/chromium_org/chrome/browser/
chrome_net_benchmarking_message_filter.cc 71 disk_cache::Backend* backend = request_context_->GetURLRequestContext()-> local
73 if (backend) {
76 rv = backend->DoomAllEntries(callback);
  /external/chromium_org/third_party/skia/bench/
MemsetBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
RectanizerBench.cpp 67 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
68 return kNonRendering_Backend == backend;
GrResourceCacheBench.cpp 174 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
175 return backend == kGPU_Backend;
210 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
211 return backend == kGPU_Backend;
RTreeBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
93 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
94 return backend == kNonRendering_Backend;
RegionBench.cpp 102 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
103 return backend == kNonRendering_Backend;
146 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
147 return backend == kNonRendering_Backend;
PictureNestingBench.cpp 102 virtual bool isSuitableFor(Backend backend) {
103 return backend == kNonRendering_Backend;
PictureRecordBench.cpp 24 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
25 return backend == kNonRendering_Backend;
SortBench.cpp 110 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
111 return backend == kNonRendering_Backend;
XfermodeBench.cpp 66 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
67 return backend == kNonRendering_Backend;
  /external/chromium_org/net/http/
http_cache.cc 85 NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend,
95 backend,
118 // open cache entries or the backend itself.
124 scoped_ptr<disk_cache::Backend> backend; member in struct:net::HttpCache::PendingOp
140 // A work item encapsulates a single request to the backend with all the
150 const net::CompletionCallback& cb, disk_cache::Backend** backend)
155 backend_(backend) {}
    [all...]
mock_http_cache.cc 468 scoped_ptr<disk_cache::Backend::Iterator> MockDiskCache::CreateIterator() {
495 scoped_ptr<disk_cache::Backend>* backend,
497 backend->reset(new MockDiskCache());
513 disk_cache::Backend* backend; local
514 int rv = http_cache_.GetBackend(&backend, cb.callback());
516 return (rv == net::OK) ? static_cast<MockDiskCache*>(backend) : NULL;
599 net::NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend,
    [all...]
disk_cache_based_quic_server_info.cc 40 CacheOperationDataShim() : backend(NULL), entry(NULL) {}
42 disk_cache::Backend* backend; member in struct:net::DiskCacheBasedQuicServerInfo::CacheOperationDataShim
187 backend_ = data_shim_->backend;
235 return http_cache_->GetBackend(&data_shim_->backend, io_callback_);
  /external/eigen/bench/
sparse_cholesky.cpp 63 template<int Backend>
69 SparseLLT<EigenSparseSelfAdjointMatrix,Backend> chol(sm1, flags);
  /art/compiler/
compiler.cc 148 Backend* GetCodeGenerator(CompilationUnit* cu, void* compilation_unit) const {
compilers.cc 101 Backend* QuickCompiler::GetCodeGenerator(CompilationUnit* cu, void* compilation_unit) const {
122 /* The number of compiler temporaries depends on backend so set it up now if possible */
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.h 33 // SimpleBackendImpl is a new cache backend that stores entries in individual
35 // See http://www.chromium.org/developers/design-documents/network-stack/disk-cache/very-simple-backend
48 class NET_EXPORT_PRIVATE SimpleBackendImpl : public Backend,
71 // Returns the maximum file size permitted in this backend.
77 // The entry for |entry_hash| is being doomed; the backend will not attempt
90 // Backend:
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.cc 56 scoped_ptr<disk_cache::Backend::Iterator> iterator)
311 cache_ = simple_backend.PassAs<disk_cache::Backend>();
  /external/chromium_org/content/browser/service_worker/
service_worker_cache.cc 27 typedef scoped_ptr<disk_cache::Backend> ScopedBackendPtr;
663 // The vector of open entries in the backend.
670 scoped_ptr<disk_cache::Backend::Iterator> backend_iterator;
823 disk_cache::Backend::Iterator& iterator = *keys_context->backend_iterator;
912 disk_cache::Backend::Iterator& iterator = *keys_context->backend_iterator;
979 ScopedBackendPtr* backend = backend_ptr.get(); local
    [all...]
  /external/chromium_org/net/tools/dump_cache/
cache_dumper.cc 17 CacheDumper::CacheDumper(disk_cache::Backend* cache)

Completed in 721 milliseconds

1 2 34 5 6