HomeSort by relevance Sort by last modified time
    Searched refs:backend (Results 251 - 275 of 374) sorted by null

<<1112131415

  /external/chromium/chrome/browser/history/
history.cc 6 // database operations don't delay the browser. This backend processing is
65 // Sends messages from the backend to us on the main thread. This must be a
68 // Release when the Backend has a reference to us).
83 history::InMemoryHistoryBackend* backend) OVERRIDE {
84 // Send the backend to the history service on the main thread.
86 &HistoryService::SetInMemoryBackend, backend));
149 // Shutdown the backend. This does nothing if Cleanup was already invoked.
154 // NOTE: We start the backend loading even though it completes asynchronously
156 // callers of this assume that if the backend isn't yet loaded it will be
158 // later. If we've purged the backend, we haven't necessarily restarted i
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 100 RunOnDBThreadTask(HistoryBackend* backend, HistoryDBTask* task)
101 : backend_(backend), task_(task) {}
111 ACTION_P2(RunTaskOnDBThread, thread, backend) {
114 new RunOnDBThreadTask(backend, arg0));
  /external/chromium/net/disk_cache/
eviction.cc 72 void Eviction::Init(BackendImpl* backend) {
73 // We grab a bunch of info from the backend to make the code a little cleaner
75 backend_ = backend;
76 rankings_ = &backend->rankings_;
79 new_eviction_ = backend->new_eviction_;
90 // It is possible for the backend initialization to fail, in which case this
in_flight_backend_io.cc 16 BackendIO::BackendIO(InFlightIO* controller, BackendImpl* backend,
18 : BackgroundIO(controller), backend_(backend), callback_(callback),
284 InFlightBackendIO::InFlightBackendIO(BackendImpl* backend,
286 : backend_(backend),
rankings.h 107 bool Init(BackendImpl* backend, bool count_lists);
disk_cache_test_base.cc 182 TrimTask(disk_cache::BackendImpl* backend, bool deleted, bool empty)
183 : backend_(backend),
backend_impl.cc 186 // This class takes care of building an instance of the backend.
192 disk_cache::Backend** backend,
195 type_(type), flags_(flags), thread_(thread), backend_(backend),
202 // Creates the backend.
218 disk_cache::Backend** backend_;
273 explicit FinalCleanup(disk_cache::BackendImpl* backend) : backend_(backend) {}
294 net::NetLog* net_log, Backend** backend,
    [all...]
  /external/chromium_org/chrome/browser/sync/
test_profile_sync_service.h 97 // Allows extra initialization work to be performed before the backend comes
134 const syncer::WeakHandle<syncer::JsBackend>& backend,
177 // Return NULL handle to use in backend initialization to avoid receiving
profile_sync_components_factory_impl.cc 297 SyncBackendHost* backend,
303 backend,
  /external/chromium_org/content/browser/webui/
url_data_manager_backend.cc 104 URLDataManagerBackend* backend,
194 // The backend is owned by ChromeURLRequestContext and always outlives us.
204 URLDataManagerBackend* backend,
215 backend_(backend),
217 DCHECK(backend);
  /external/chromium_org/net/disk_cache/
in_flight_backend_io.cc 18 BackendIO::BackendIO(InFlightIO* controller, BackendImpl* backend,
21 backend_(backend),
330 InFlightBackendIO::InFlightBackendIO(BackendImpl* backend,
332 : backend_(backend),
rankings.h 108 bool Init(BackendImpl* backend, bool count_lists);
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.cc 120 void DeleteBackendImpl(disk_cache::Backend** backend,
123 DCHECK(*backend);
124 delete *backend;
125 *backend = NULL;
130 // backend type and version. If the directory contains no cache, occupies it
135 // currently running backend. The Simple Backend stores its index in the file
139 // 1. Absence of the index is itself not a fatal error in the Simple Backend
140 // 2. The Simple Backend has pickled file format for the index making it hack
    [all...]
simple_entry_impl.h 51 SimpleBackendImpl* backend,
61 // Identical to Backend::Doom() except that it accepts a CompletionCallback.
147 // us at this point. We need to remove |this| from the Backend and the
255 // Number of times this object has been returned from Backend::OpenEntry() and
256 // Backend::CreateEntry() without subsequent Entry::Close() calls. Used to
257 // notify the backend when this entry not used by any callers.
  /external/chromium_org/net/disk_cache/v3/
entry_impl_v3.h 38 EntryImpl(BackendImpl* backend, Addr address, bool read_only);
210 int unreported_size_[kNumStreams]; // Bytes not reported yet to the backend.
  /external/chromium_org/webkit/browser/fileapi/
file_system_context.h 91 // |additional_backends| are added to the internal backend map
133 // Returns the file system backend instance for the given |type|.
191 // FileSystemBackend for the URL and call the backend's CreateFileReader.
253 // FileSystemBackend for |url| and calling the backend's corresponding
274 void RegisterBackend(FileSystemBackend* backend);
298 // This map itself doesn't retain each backend's ownership; ownerships
300 // backend fields.
copy_or_move_file_validator_unittest.cc 94 TestFileSystemBackend* backend = static_cast<TestFileSystemBackend*>( local
96 backend->InitializeCopyOrMoveFileValidatorFactory(factory.Pass());
  /external/llvm/utils/
llvm-native-gcc 10 $Backend = 'cbe';
21 if ($ARGV[$i] =~ /-mllvm-backend=([a-z0-9]*)/) {
22 $Backend = $1;
75 $def =~ s/\.bc$/.$Backend/;
108 my ($BCFile, $Backend, $OutputFile) = @_;
111 if ($Backend eq 'cbe') {
118 } elsif ($Backend eq 'llc') {
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
146 if ($Backend eq 'cbe') {
149 } elsif ($Backend eq 'llc')
    [all...]
llvm-native-gxx 10 $Backend = 'cbe';
21 if ($ARGV[$i] =~ /-mllvm-backend=([a-z0-9]*)/) {
22 $Backend = $1;
75 $def =~ s/\.bc$/.$Backend/;
108 my ($BCFile, $Backend, $OutputFile) = @_;
111 if ($Backend eq 'cbe') {
118 } elsif ($Backend eq 'llc') {
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
146 if ($Backend eq 'cbe') {
149 } elsif ($Backend eq 'llc')
    [all...]
  /external/chromium/chrome/browser/sync/glue/
data_type_manager_impl.cc 61 DataTypeManagerImpl::DataTypeManagerImpl(SyncBackendHost* backend,
63 : backend_(backend),
144 // Restart to start/stop data types and notify the backend that the
147 // started due to crypto errors but the backend host needs to know that we're
169 // Tell the backend about the new set of data types we wish to sync.
  /external/chromium_org/chrome/browser/chromeos/
swap_metrics.cc 44 class SwapMetrics::Backend : public base::RefCountedThreadSafe<Backend> {
46 explicit Backend(const std::string& reason);
56 friend class base::RefCountedThreadSafe<Backend>;
58 virtual ~Backend();
111 DISALLOW_COPY_AND_ASSIGN(Backend);
115 bool SwapMetrics::Backend::first_time_ = true;
117 int64 SwapMetrics::Backend::swap_total_kb_ = 0;
119 int SwapMetrics::Backend::number_of_cpus_ = 0;
121 SwapMetrics::Backend::Backend(const std::string& reason
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_manager_util.cc 245 fileapi::ExternalFileSystemBackend* backend = local
248 if (!backend)
250 backend->GrantFullAccessToExtension(GetFileBrowserUrl().host());
586 fileapi::ExternalFileSystemBackend* backend = local
589 if (!backend)
592 // Find if this file path is managed by the external backend.
593 if (!backend->GetVirtualPath(full_file_path, virtual_path))
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 77 * @param {Object} download A backend download object (see downloads_ui.cc)
236 * @param {Object} download A backend download object (see downloads_ui.cc)
415 * @param {Object} download A backend download object (see downloads_ui.cc)
609 * Tells the backend to initiate a drag, allowing users to drag
621 * Tells the backend to open this file.
631 * Tells the backend that the user chose to save a dangerous file.
641 * Tells the backend that the user chose to discard a dangerous file.
652 * Tells the backend to show the file in explorer.
662 * Tells the backend to pause this download.
672 * Tells the backend to resume this download
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.cpp 261 void IDBRequest::onSuccess(PassRefPtr<IDBCursorBackendInterface> backend, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> buffer)
273 cursor = IDBCursor::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get());
276 cursor = IDBCursorWithValue::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get());
  /external/chromium_org/chrome/browser/nacl_host/
pnacl_translation_cache.cc 80 // Try to open an existing entry in the backend
82 // Create a new entry in the backend (for writes)
84 // Write |len| bytes to the backend, starting at |offset|
86 // Read |len| bytes from the backend, starting at |offset|
93 // Used as the callback for all operations to the backend. Handle state
158 int rv = cache_->backend()->OpenEntry(
167 int rv = cache_->backend()->CreateEntry(
314 // Construction and cache backend initialization
355 LOG(ERROR) << "PnaclTranslationCache: backend init failed:"

Completed in 6579 milliseconds

<<1112131415