HomeSort by relevance Sort by last modified time
    Searched refs:backend (Results 276 - 300 of 455) sorted by null

<<111213141516171819

  /external/lldb/source/Core/
ValueObjectSyntheticFilter.cpp 26 DummySyntheticFrontEnd(ValueObject &backend) :
27 SyntheticChildrenFrontEnd(backend)
174 // let our backend do its update
  /external/skia/bench/
MemcpyBench.cpp 25 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
26 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/chrome/browser/resources/media/
webrtc_logs.js 6 * Requests the list of uploads from the backend.
13 * Callback from backend with the list of uploads. Builds the UI.
  /external/chromium_org/content/worker/
websharedworkerclient_proxy.cc 79 app_cache_host_->backend()->SelectCacheForSharedWorker(
  /external/chromium_org/net/disk_cache/tracing/
tracing_cache_backend.h 19 // The TracingCacheBackend implements the Cache Backend interface. It intercepts
20 // all backend operations from the IO thread and records the time from the start
22 class NET_EXPORT TracingCacheBackend : public Backend,
25 explicit TracingCacheBackend(scoped_ptr<Backend> backend);
75 scoped_ptr<Backend> backend_;
tracing_cache_backend.cc 11 // Proxies entry objects created by the real underlying backend. Backend users
12 // will only see the proxy entries. It is necessary for recording the backend
16 EntryProxy(Entry *entry, TracingCacheBackend* backend);
61 EntryProxy::EntryProxy(Entry *entry, TracingCacheBackend* backend)
63 backend_(backend->AsWeakPtr()) {
179 TracingCacheBackend::TracingCacheBackend(scoped_ptr<Backend> backend)
180 : backend_(backend.Pass()) {
  /external/chromium_org/webkit/browser/appcache/
appcache_request_handler.cc 177 AppCacheBackendImpl* backend = host_->service()->GetBackend(old_process_id);
178 host_for_cross_site_transfer_ = backend->TransferHostOut(host_->host_id());
187 AppCacheBackendImpl* backend = host_->service()->GetBackend(new_process_id); local
188 backend->TransferHostIn(new_host_id, host_for_cross_site_transfer_.Pass());
  /external/chromium_org/webkit/browser/fileapi/quota/
quota_reservation_manager.h 49 // that case, the backend should roll back the reservation.
75 explicit QuotaReservationManager(scoped_ptr<QuotaBackend> backend);
  /external/chromium_org/chrome/browser/sync_file_system/local/
sync_file_system_backend.cc 89 SyncFileSystemBackend* backend = new SyncFileSystemBackend(NULL); local
90 backend->skip_initialize_syncfs_service_for_testing_ = true;
91 return backend;
syncable_file_system_operation.cc 361 SyncFileSystemBackend* backend = local
363 DCHECK(backend);
364 if (!backend->sync_context()) {
372 operation_runner_ = backend->sync_context()->operation_runner();
  /external/chromium_org/content/child/appcache/
web_application_cache_host_impl.cc 60 AppCacheBackend* backend)
62 backend_(backend),
69 DCHECK(client && backend && (host_id_ != appcache::kAppCacheNoHostId));
  /external/chromium_org/chrome/browser/history/
delete_directive_handler.cc 127 virtual bool RunOnDBThread(history::HistoryBackend* backend,
154 history::HistoryBackend* backend,
170 ProcessGlobalIdDeleteDirectives(backend, global_id_directives);
173 ProcessTimeRangeDeleteDirectives(backend, time_range_directives);
192 // It's more efficient for backend to process all directives with same time
222 // Call backend to expire history of directives in each group.
in_memory_url_index.h 163 virtual bool RunOnDBThread(HistoryBackend* backend,
  /external/chromium_org/chrome/browser/password_manager/
password_store_x.h 25 // operating systems. It uses a "native backend" to actually store the password
26 // data when such a backend is available, and otherwise falls back to using the
28 // migrating password data to a native backend from the login database.
68 // Takes ownership of |login_db| and |backend|. |backend| may be NULL in which
73 NativeBackend* backend);
110 // Return true if we should try using the native backend.
118 // the native backend. If successful, the login database will be left with no
123 // The native backend in use, or NULL if none.
  /external/chromium_org/chrome/browser/sessions/
base_session_service.h 37 // backend to determine the name of the files.
63 // Returns the backend.
64 SessionBackend* backend() const { return backend_.get(); } function in class:BaseSessionService
68 // on the backend at which point the backend owns the commands.
88 // Saves pending commands to the backend. This is invoked from the timer
152 // backend thread.
172 // The backend.
178 // Commands we need to send over to the backend.
181 // Whether the backend file should be recreated the next time we sen
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory_impl.h 58 browser_sync::SyncBackendHost* backend,
  /external/chromium_org/components/policy/core/common/cloud/
external_policy_data_fetcher.h 72 // |backend| is used to perform network I/O. It will be dereferenced and
77 const base::WeakPtr<ExternalPolicyDataFetcherBackend>& backend);
  /external/chromium_org/content/browser/gpu/
shader_disk_cache.h 78 disk_cache::Backend* backend() { return backend_.get(); } function in class:content::ShaderDiskCache
90 scoped_ptr<disk_cache::Backend> backend_;
  /external/chromium_org/net/disk_cache/
disk_cache.h 33 class Backend;
35 // Returns an instance of a Backend of the given |type|. |path| points to a
44 // any backend that performs operations on a disk. The returned pointer can be
47 // be invoked when a backend is available or a fatal error condition is reached.
48 // The pointer to receive the |backend| must remain valid until the operation
57 scoped_ptr<Backend>* backend,
61 class NET_EXPORT Backend {
65 // If the backend is destroyed when there are operations in progress (any
69 // for a given Entry (as opposed to the Backend) will still generate
    [all...]
  /external/chromium_org/net/disk_cache/memory/
mem_entry_impl.h 32 // registered in the backend's entry map. It is registered in the backend's
53 explicit MemEntryImpl(MemBackendImpl* backend);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.cpp 51 IDBCursor* IDBCursor::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
53 return new IDBCursor(backend, direction, request, source, transaction);
80 IDBCursor::IDBCursor(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
81 : m_backend(backend)
IDBDatabase.h 117 blink::WebIDBDatabase* backend() const { return m_backend.get(); } function in class:WebCore::FINAL

Completed in 583 milliseconds

<<111213141516171819