HomeSort by relevance Sort by last modified time
    Searched refs:backend (Results 226 - 250 of 479) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/file_manager/
fileapi_util.cc 304 storage::ExternalFileSystemBackend* backend = local
308 if (!backend)
311 // Find if this file path is managed by the external backend.
312 if (!backend->GetVirtualPath(absolute_path, virtual_path))
354 storage::ExternalFileSystemBackend* backend = local
356 DCHECK(backend);
357 backend->GrantFullAccessToExtension(kFileManagerAppId);
  /external/chromium_org/chrome/browser/extensions/api/storage/
sync_value_store_cache.cc 81 SyncStorageBackend* backend = local
83 callback.Run(backend->GetStorage(extension->id()));
  /external/chromium_org/chrome/browser/sync/glue/
history_model_worker.cc 25 virtual bool RunOnDBThread(history::HistoryBackend* backend,
49 virtual bool RunOnDBThread(history::HistoryBackend* backend,
  /external/chromium_org/cloud_print/service/win/
service_listener.cc 17 #include "printing/backend/print_backend.h"
18 #include "printing/backend/win_helper.h"
23 scoped_refptr<printing::PrintBackend> backend(
26 backend->EnumeratePrinters(&printer_list);
  /external/chromium_org/content/browser/service_worker/
service_worker_cache.h 31 // TODO(jkarlin): Unload cache backend from memory once the cache object is no
85 // Prevent further operations on this object and delete the backend.
88 void set_backend(scoped_ptr<disk_cache::Backend> backend) {
89 backend_ = backend.Pass();
123 // Loads the backend and calls the callback with the result (true for
130 // The backend can be deleted via the Close function at any time so always
132 scoped_ptr<disk_cache::Backend> backend_;
  /external/chromium_org/net/http/
disk_based_cert_cache.cc 58 // |backend| is the backend to store |certificate| in, using
62 WriteWorker(disk_cache::Backend* backend,
108 disk_cache::Backend* backend_;
124 disk_cache::Backend* backend,
128 : backend_(backend),
298 // |backend| is the backend to read |certificate| from, usin
    [all...]
disk_based_cert_cache.h 18 class Backend;
33 // |backend|.
34 explicit DiskBasedCertCache(disk_cache::Backend* backend);
88 disk_cache::Backend* backend_;
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_);
http_cache.h 9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
43 class Backend;
83 // A BackendFactory creates a backend object to be used by the HttpCache.
88 // The actual method to build the backend. Returns a net error code. If
90 // operation completes, and |backend| must remain valid until the
95 scoped_ptr<disk_cache::Backend>* backend,
99 // A default backend factory for the common use cases.
102 // |path| is the destination for any files used by the backend, and
117 scoped_ptr<disk_cache::Backend>* backend
    [all...]
mock_http_cache.h 96 class MockDiskCache : public disk_cache::Backend {
160 scoped_ptr<disk_cache::Backend>* backend,
193 // Helper function to synchronously open a backend entry.
196 // Helper function to synchronously create a backend entry.
220 scoped_ptr<disk_cache::Backend>* backend,
224 // This backend factory allows us to control the backend instantiation.
231 scoped_ptr<disk_cache::Backend>* backend
238 scoped_ptr<disk_cache::Backend>* backend() { return backend_; } function in class:MockBlockingBackendFactory
    [all...]
  /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;
  /external/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;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 144 ComPtr<IGalliumDXGIBackend> backend; member in struct:GalliumDXGIFactory
151 backend = p_backend;
153 backend.reset(new GalliumDXGIX11IdentityBackend((Display*)display));
155 backend.reset(new GalliumDXGIIdentityBackend());
1413 IGalliumDXGIBackend* backend; member in struct:dxgi_binding
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 144 ComPtr<IGalliumDXGIBackend> backend; member in struct:GalliumDXGIFactory
151 backend = p_backend;
153 backend.reset(new GalliumDXGIX11IdentityBackend((Display*)display));
155 backend.reset(new GalliumDXGIIdentityBackend());
1413 IGalliumDXGIBackend* backend; member in struct:dxgi_binding
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_provider.h 98 ShortcutsBackend* backend);
  /external/chromium_org/chrome/browser/resources/predictors/
autocomplete_action_predictor.js 6 * Requests the database from the backend.
13 * Callback from backend with the database contents. Sets up some globals and
  /external/chromium_org/chrome/browser/sessions/
base_session_service.cc 69 // backend.
98 base::Bind(&SessionBackend::DeleteLastSession, backend()));
121 DCHECK(backend());
128 base::Bind(&SessionBackend::AppendCommands, backend(),
132 // Backend took ownership of commands.
292 base::Bind(&SessionBackend::ReadLastSessionCommands, backend(),
session_service_test_helper.h 82 SessionBackend* backend();
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory.h 89 browser_sync::SyncBackendHost* backend,
  /external/chromium_org/components/nacl/browser/
pnacl_translation_cache.h 21 class Backend;
69 // Return the number of entries in the cache backend.
85 // OpComplete and backend methods on PnaclTranslationCache.
87 disk_cache::Backend* backend() { return disk_cache_.get(); } function in class:pnacl::PnaclTranslationCache
96 scoped_ptr<disk_cache::Backend> disk_cache_;
  /external/chromium_org/net/disk_cache/blockfile/
eviction.h 25 void Init(BackendImpl* backend);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.cpp 145 DatabaseContext* DatabaseContext::backend() function in class:blink::DatabaseContext
DatabaseManager.cpp 167 DatabaseContext* backendContext = databaseContextFor(context)->backend();
169 RefPtrWillBeRawPtr<Database> backend = adoptRefWillBeNoop(new Database(backendContext, name, expectedVersion, displayName, estimatedSize)); local
170 if (backend->openAndVerifyVersion(setVersionInNewDatabase, error, errorMessage))
171 return backend.release();

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>