Searched refs:Backend (Results 1 - 25 of 94) sorted by relevance

1234

/external/chromium/chrome/browser/chromeos/
H A Dversion_loader.h76 // VersionLoader calls into the Backend on the file thread to load
78 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::VersionLoader
80 Backend() : parse_as_platform_(false) {} function in class:chromeos::VersionLoader::Backend
95 friend class base::RefCountedThreadSafe<Backend>;
99 ~Backend() {}
101 DISALLOW_COPY_AND_ASSIGN(Backend);
112 scoped_refptr<Backend> backend_;
H A Dboot_times_loader.h113 // BootTimesLoader calls into the Backend on the file thread to load
115 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::BootTimesLoader
117 Backend() {} function in class:chromeos::BootTimesLoader::Backend
122 friend class base::RefCountedThreadSafe<Backend>;
124 ~Backend() {}
126 DISALLOW_COPY_AND_ASSIGN(Backend);
162 scoped_refptr<Backend> backend_;
/external/chromium_org/chrome/browser/chromeos/
H A Dversion_loader.h65 // VersionLoader calls into the Backend in the blocking thread pool to load
67 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::VersionLoader
69 Backend() {} function in class:chromeos::VersionLoader::Backend
81 friend class base::RefCountedThreadSafe<Backend>;
83 ~Backend() {}
85 DISALLOW_COPY_AND_ASSIGN(Backend);
96 scoped_refptr<Backend> backend_;
H A Dswap_metrics.cc44 class SwapMetrics::Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::SwapMetrics
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 function in class:chromeos::SwapMetrics::Backend
[all...]
H A Dswap_metrics.h48 class Backend;
51 static void PostTaskRecordMetrics(scoped_refptr<Backend> backend,
64 // Backend to handle processing in the blocking thread pool.
65 scoped_refptr<Backend> backend_;
H A Dboot_times_loader.h80 // BootTimesLoader calls into the Backend on the file thread to load
82 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::BootTimesLoader
84 Backend() {} function in class:chromeos::BootTimesLoader::Backend
87 friend class base::RefCountedThreadSafe<Backend>;
89 ~Backend() {}
91 DISALLOW_COPY_AND_ASSIGN(Backend);
135 scoped_refptr<Backend> backend_;
/external/chromium_org/chrome/browser/value_store/
H A Dvalue_store_frontend.cc16 class ValueStoreFrontend::Backend : public base::RefCountedThreadSafe<Backend> { class in class:ValueStoreFrontend
18 Backend() : storage_(NULL) {} function in class:ValueStoreFrontend::Backend
23 TRACE_EVENT0("ValueStoreFrontend::Backend", "Init");
51 base::Bind(&ValueStoreFrontend::Backend::RunCallback,
68 friend class base::RefCountedThreadSafe<Backend>;
70 virtual ~Backend() {
90 DISALLOW_COPY_AND_ASSIGN(Backend);
94 : backend_(new Backend()) {
98 : backend_(new Backend()) {
[all...]
H A Dvalue_store_frontend.h49 class Backend;
53 scoped_refptr<Backend> backend_;
/external/llvm/utils/
H A Dllvm-native-gcc10 $Backend = 'cbe';
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') {
168 CompileBytecodeToNative ($LinkedBCFile, $Backend,
[all...]
H A Dllvm-native-gxx10 $Backend = 'cbe';
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') {
168 CompileBytecodeToNative ($LinkedBCFile, $Backend,
[all...]
/external/chromium/chrome/browser/net/
H A Dsqlite_persistent_cookie_store.cc53 class SQLitePersistentCookieStore::Backend class in class:SQLitePersistentCookieStore
54 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
56 explicit Backend(const FilePath& path) function in class:SQLitePersistentCookieStore::Backend
94 friend class base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend>;
97 ~Backend() {
155 DISALLOW_COPY_AND_ASSIGN(Backend);
204 bool SQLitePersistentCookieStore::Backend::Load(
285 bool SQLitePersistentCookieStore::Backend::EnsureDatabaseVersion() {
359 void SQLitePersistentCookieStore::Backend::AddCookie(
364 void SQLitePersistentCookieStore::Backend
[all...]
H A Dsqlite_persistent_cookie_store.h51 class Backend;
53 scoped_refptr<Backend> backend_;
/external/chromium_org/chrome/browser/policy/cloud/
H A Dcomponent_cloud_policy_service.cc47 class ComponentCloudPolicyService::Backend class in class:policy::ComponentCloudPolicyService
50 Backend(base::WeakPtr<ComponentCloudPolicyService> service,
53 virtual ~Backend();
98 DISALLOW_COPY_AND_ASSIGN(Backend);
101 ComponentCloudPolicyService::Backend::Backend( function in class:policy::ComponentCloudPolicyService::Backend
109 ComponentCloudPolicyService::Backend::~Backend() {}
111 void ComponentCloudPolicyService::Backend::Init() {
116 void ComponentCloudPolicyService::Backend
[all...]
H A Dcloud_external_data_manager_base.cc42 // Backend for the CloudExternalDataManagerBase that handles all data download,
44 class CloudExternalDataManagerBase::Backend { class in class:policy::CloudExternalDataManagerBase
49 Backend(const PolicyDefinitionList* policy_definitions,
143 DISALLOW_COPY_AND_ASSIGN(Backend);
146 CloudExternalDataManagerBase::Backend::Backend( function in class:policy::CloudExternalDataManagerBase::Backend
154 void CloudExternalDataManagerBase::Backend::SetExternalDataStore(
161 void CloudExternalDataManagerBase::Backend::Connect(
173 void CloudExternalDataManagerBase::Backend::Disconnect() {
177 void CloudExternalDataManagerBase::Backend
[all...]
H A Dcloud_external_data_manager_base.h67 class Backend;
68 Backend* backend_;
/external/chromium_org/chrome/browser/net/
H A Dsqlite_server_bound_cert_store.h46 class Backend;
48 scoped_refptr<Backend> backend_;
H A Dsqlite_server_bound_cert_store.cc36 class SQLiteServerBoundCertStore::Backend class in class:SQLiteServerBoundCertStore
37 : public base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend> {
39 Backend(const base::FilePath& path, function in class:SQLiteServerBoundCertStore::Backend
69 friend class base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend>;
72 ~Backend() {
137 DISALLOW_COPY_AND_ASSIGN(Backend);
167 void SQLiteServerBoundCertStore::Backend::Load(
174 base::Bind(&Backend::LoadOnDBThreadAndNotify, this, loaded_callback));
177 void SQLiteServerBoundCertStore::Backend::LoadOnDBThreadAndNotify(
191 void SQLiteServerBoundCertStore::Backend
[all...]
/external/chromium/net/http/
H A Ddisk_cache_based_ssl_host_info.h62 disk_cache::Backend** backend_pointer() { return &backend_; }
64 disk_cache::Backend* backend() const { return backend_; }
74 disk_cache::Backend* backend_;
112 disk_cache::Backend* backend_;
/external/chromium_org/android_webview/browser/
H A Dnet_disk_cache_remover.cc19 using disk_cache::Backend;
30 void CallDoomAllEntries(Backend** backend, int rv) {
36 typedef Backend* BackendPtr; // Make line below easier to understand.
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store.cc51 // delegates to Backend::Load, which posts a Backend::LoadAndNotifyOnDBThread
52 // task to the background runner. This task calls Backend::ChainLoadCookies(),
54 // in separate tasks. When this is complete, Backend::CompleteLoadOnIOThread is
59 // LoadCookiesForKey, it is delegated to Backend::LoadCookiesForKey, which posts
60 // Backend::LoadKeyAndNotifyOnDBThread to the BG runner. That routine loads just
61 // that single domain key (eTLD+1)'s cookies, and posts a Backend::
69 class SQLitePersistentCookieStore::Backend class in class:content::SQLitePersistentCookieStore
70 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
72 Backend( function in class:content::SQLitePersistentCookieStore::Backend
[all...]
H A Dsqlite_persistent_cookie_store.h68 class Backend;
70 scoped_refptr<Backend> backend_;
/external/chromium_org/chrome/browser/nacl_host/
H A Dpnacl_translation_cache.h21 class Backend;
87 disk_cache::Backend* backend() { return disk_cache_.get(); }
102 scoped_ptr<disk_cache::Backend> disk_cache_;
/external/chromium/net/disk_cache/
H A Ddisk_cache.h34 class Backend;
37 // Returns an instance of a Backend of the given |type|. |path| points to a
54 net::NetLog* net_log, Backend** backend,
58 class Backend { class in namespace:disk_cache
64 // for a given Entry (as opposed to the Backend) will still generate a
66 virtual ~Backend() {}
196 // A Backend implementation can support sparse entries, so the cache keeps
220 // The Backend implementation is free to evict any range from the cache at any
/external/chromium_org/net/disk_cache/v3/
H A Dbackend_worker.h24 // This class implements the Backend interface. An object of this
26 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
/external/chromium/net/url_request/
H A Dview_cache_helper.h15 class Backend;
97 disk_cache::Backend* disk_cache_;

Completed in 354 milliseconds

1234