HomeSort by relevance Sort by last modified time
    Searched refs:backend (Results 151 - 175 of 319) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/content/browser/appcache/
appcache_request_handler.cc 184 AppCacheBackendImpl* backend = host_->service()->GetBackend(old_process_id);
185 host_for_cross_site_transfer_ = backend->TransferHostOut(host_->host_id());
194 AppCacheBackendImpl* backend = host_->service()->GetBackend(new_process_id); local
195 backend->TransferHostIn(new_host_id, host_for_cross_site_transfer_.Pass());
  /external/chromium_org/storage/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/tools/telemetry/telemetry/core/
browser.py 30 def __init__(self, backend, platform_backend, archive_path,
35 self._browser_backend = backend
38 self._local_server_controller = local_server.LocalServerController(backend)
39 self._tabs = tab_list.TabList(backend.tab_list_backend)
  /external/chromium_org/content/child/appcache/
web_application_cache_host_impl.cc 58 AppCacheBackend* backend)
60 backend_(backend),
67 DCHECK(client && backend && (host_id_ != kAppCacheNoHostId));
  /external/chromium_org/chrome/browser/sync_file_system/local/
sync_file_system_backend.cc 91 SyncFileSystemBackend* backend = new SyncFileSystemBackend(NULL); local
92 backend->skip_initialize_syncfs_service_for_testing_ = true;
93 return backend;
syncable_file_system_operation.cc 356 SyncFileSystemBackend* backend = local
358 DCHECK(backend);
359 if (!backend->sync_context()) {
367 operation_runner_ = backend->sync_context()->operation_runner();
  /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 36 // backend to determine the name of the files.
62 // Returns the backend.
63 SessionBackend* backend() const { return backend_.get(); } function in class:BaseSessionService
67 // on the backend at which point the backend owns the commands.
87 // Saves pending commands to the backend. This is invoked from the timer
151 // backend thread.
171 // The backend.
174 // Commands we need to send over to the backend.
177 // 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 52 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_policy_data_fetcher.cc 80 const base::WeakPtr<ExternalPolicyDataFetcherBackend>& backend)
83 backend_(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 35 class Backend;
37 // Returns an instance of a Backend of the given |type|. |path| points to a
46 // any backend that performs operations on a disk. The returned pointer can be
49 // be invoked when a backend is available or a fatal error condition is reached.
50 // The pointer to receive the |backend| must remain valid until the operation
60 scoped_ptr<Backend>* backend,
64 class NET_EXPORT Backend {
79 // Calling OpenNextEntry after the backend which created it is destroyed
88 // If the backend is destroyed when there are operations in progress (an
    [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);
mem_backend_impl.cc 45 scoped_ptr<Backend> MemBackendImpl::CreateBackend(int max_bytes,
50 return cache.PassAs<Backend>();
53 return scoped_ptr<Backend>();
184 class MemBackendImpl::MemIterator : public Backend::Iterator {
186 explicit MemIterator(base::WeakPtr<MemBackendImpl> backend)
187 : backend_(backend), current_(NULL) {
215 scoped_ptr<Backend::Iterator> MemBackendImpl::CreateIterator() {
216 return scoped_ptr<Backend::Iterator>(
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.cpp 52 IDBCursor* IDBCursor::create(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
54 return new IDBCursor(backend, direction, request, source, transaction);
57 IDBCursor::IDBCursor(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
58 : m_backend(backend)
IDBDatabase.h 117 WebIDBDatabase* backend() const { return m_backend.get(); } function in class:blink::FINAL
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-events.l 131 stalled-cycles-backend|idle-cycles-backend { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT_HW_STALLED_CYCLES_BACKEND); }
  /art/build/
Android.common_build.mk 99 DEX2OAT_FLAGS := --compiler-backend=Optimizing
100 DALVIKVM_FLAGS += -Xcompiler-option --compiler-backend=Optimizing
  /art/compiler/dex/quick/
dex_file_method_inliner.h 75 bool GenIntrinsic(Mir2Lir* backend, CallInfo* info) LOCKS_EXCLUDED(lock_);
85 bool GenSpecial(Mir2Lir* backend, uint32_t method_idx) LOCKS_EXCLUDED(lock_);
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 431 // and because the history backend strips auth creds, we'll get a bogus exact
566 // someone unloads the history backend, we'll get inconsistent inline
655 history::HistoryBackend* backend,
664 DoAutocomplete(backend, db, params);
725 void HistoryURLProvider::DoAutocomplete(history::HistoryBackend* backend,
745 !backend, &url_matches);
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
entry_impl.h 41 EntryImpl(BackendImpl* backend, Addr address, bool read_only);
129 void OnEntryCreated(BackendImpl* backend);
265 int unreported_size_[kNumStreams]; // Bytes not reported yet to the backend.
in_flight_backend_io.h 29 BackendIO(InFlightIO* controller, BackendImpl* backend,
42 // Returns true if this operation is directed to an entry (vs. the backend).
79 // There are two types of operations to proxy: regular backend operations are
150 BackendImpl* backend,

Completed in 1282 milliseconds

1 2 3 4 5 67 8 91011>>