/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseContext.cpp | 153 DatabaseContext* DatabaseContext::backend() function in class:WebCore::DatabaseContext
|
SQLTransaction.cpp | 44 #include "modules/webdatabase/SQLTransactionClient.h" // FIXME: Should be used in the backend only. 97 void SQLTransaction::setBackend(AbstractSQLTransactionBackend* backend) 100 m_backend = backend; 127 // requestTransitToState() can be called from the backend. Hence, it should 177 // If we get here with an empty m_transactionError, then the backend 179 // Hence, it's thread safe to fetch the backend transactionError without
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
browser.py | 32 def __init__(self, backend, platform_backend): 33 self._browser_backend = backend 40 self._local_server_controller = local_server.LocalServerController(backend) 41 self._tabs = tab_list.TabList(backend.tab_list_backend)
|
/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 | 379 // and because the history backend strips auth creds, we'll get a bogus exact 521 // someone unloads the history backend, we'll get inconsistent inline 610 void HistoryURLProvider::ExecuteWithDB(history::HistoryBackend* backend, 620 DoAutocomplete(backend, db, params); 681 void HistoryURLProvider::DoAutocomplete(history::HistoryBackend* backend, 701 !backend, &url_matches); [all...] |
/external/chromium_org/components/policy/core/common/cloud/ |
external_policy_data_fetcher.cc | 80 const base::WeakPtr<ExternalPolicyDataFetcherBackend>& backend) 83 backend_(backend),
|
/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 | 27 BackendIO(InFlightIO* controller, BackendImpl* backend, 40 // Returns true if this operation is directed to an entry (vs. the backend). 78 // There are two types of operations to proxy: regular backend operations are 149 InFlightBackendIO(BackendImpl* backend,
|
eviction.cc | 84 void Eviction::Init(BackendImpl* backend) { 85 // We grab a bunch of info from the backend to make the code a little cleaner 87 backend_ = backend; 88 rankings_ = &backend->rankings_; 91 index_size_ = backend->mask_ + 1; 92 new_eviction_ = backend->new_eviction_; 102 // It is possible for the backend initialization to fail, in which case this
|
eviction_v3.cc | 88 void EvictionV3::Init(BackendImplV3* backend) { 89 // We grab a bunch of info from the backend to make the code a little cleaner 91 backend_ = backend; 95 lru_ = backend->lru_eviction_; 105 // It is possible for the backend initialization to fail, in which case this
|
/external/chromium_org/third_party/skia/bench/ |
InterpBench.cpp | 25 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 26 return backend == kNonRendering_Backend;
|
Matrix44Bench.cpp | 20 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 21 return backend == kNonRendering_Backend;
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
android_browser_finder.py | 106 backend = android_browser_backend.AndroidBrowserBackend( 111 b = browser.Browser(backend, self._platform_backend)
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/ |
powermetrics_power_monitor.py | 20 def __init__(self, backend): 23 self._backend = backend
|
/external/skia/bench/ |
InterpBench.cpp | 25 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 26 return backend == kNonRendering_Backend;
|
Matrix44Bench.cpp | 20 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { 21 return backend == kNonRendering_Backend;
|
/external/chromium_org/content/browser/gpu/ |
shader_disk_cache.cc | 161 int rv = cache_->backend()->OpenEntry( 199 cache_->backend()->OnExternalCacheHit(key_); 206 return cache_->backend()->CreateEntry( 294 return cache_->backend()->OpenNextEntry( 342 cache_->backend()->EndEnumeration(&iter_);
|
/external/chromium_org/chrome/service/cloud_print/ |
print_system_cups.cc | 32 #include "printing/backend/cups_helper.h" 33 #include "printing/backend/print_backend.h" 34 #include "printing/backend/print_backend_consts.h" 67 scoped_refptr<printing::PrintBackend> backend; member in struct:cloud_print::PrintServerInfoCUPS 466 // Get Print backend for the specific print server. 473 // Set encryption for backend. 477 print_server.backend = 494 if (!it->backend->EnumeratePrinters(&it->printers)) 602 server_info->backend->GetPrinterDriverInfo(short_printer_name)); 603 if (!server_info->backend->GetPrinterCapsAndDefaults(short_printer_name [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBRequest.cpp | 254 void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, IDBKey* key, IDBKey* primaryKey, PassRefPtr<SharedBuffer> value, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo) 264 cursor = IDBCursor::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get()); 267 cursor = IDBCursorWithValue::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get());
|
/external/chromium_org/tools/memory_inspector/memory_inspector/backends/android/ |
android_backend.py | 5 """Android-specific implementation of the core backend interfaces. 45 class AndroidBackend(backends.Backend): 46 """Android-specific implementation of the core |Backend| interface.""" 163 def __init__(self, backend, underlying_device): 165 backend=backend,
|
/external/elfutils/0.153/ |
elfutils.spec | 224 - libebl: i386 backend fix for multi-register integer return value 292 - libebl: sparc backend fixes; some more arm backend support 315 - libebl: backend fixes for i386 TLS relocs; backend support for 334 - elflint: backend improvements for sparc, alpha 356 - libebl: powerpc backend support for Altivec registers 372 - libebl: backend improvements for sparc, alpha, powerpc 392 - libebl: sparc backend support for return value location 393 - libebl, libdwfl: backend register name support extended with more inf [all...] |
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_file_system.cc | 230 fileapi::ExternalFileSystemBackend* backend = local 232 if (!backend) 236 backend->GrantFullAccessToExtension(extension_->id()); 239 // extension for all paths exposed by our local file system backend. 240 std::vector<base::FilePath> root_dirs = backend->GetRootDirectories();
|
/external/chromium_org/content/browser/webui/ |
url_data_manager_backend.cc | 107 URLDataManagerBackend* backend, 210 // The backend is owned by ChromeURLRequestContext and always outlives us. 220 URLDataManagerBackend* backend, 232 backend_(backend), 234 DCHECK(backend);
|