HomeSort by relevance Sort by last modified time
    Searched defs:Core (Results 1 - 14 of 14) sorted by null

  /external/chromium/chrome/browser/chromeos/login/
ownership_status_checker.cc 12 : core_(new Core(callback)) {
20 OwnershipStatusChecker::Core::Core(Callback* callback)
24 void OwnershipStatusChecker::Core::Check() {
33 &OwnershipStatusChecker::Core::ReportResult,
40 &OwnershipStatusChecker::Core::CheckOnFileThread));
44 void OwnershipStatusChecker::Core::Cancel() {
49 void OwnershipStatusChecker::Core::CheckOnFileThread() {
56 &OwnershipStatusChecker::Core::ReportResult,
60 void OwnershipStatusChecker::Core::ReportResult
    [all...]
ownership_status_checker.h 33 // The refcounted core that handles the thread switching.
34 class Core : public base::RefCountedThreadSafe<Core> {
36 explicit Core(Callback* callback);
51 DISALLOW_COPY_AND_ASSIGN(Core);
54 scoped_refptr<Core> core_;
  /external/chromium/chrome/browser/net/
view_http_cache_job_factory.cc 25 core_(new Core),
44 class Core : public base::RefCounted<Core> {
46 Core()
49 callback_(this, &Core::OnIOComplete)),
65 friend class base::RefCounted<Core>;
67 ~Core() {}
75 net::CompletionCallbackImpl<Core> callback_;
78 DISALLOW_COPY_AND_ASSIGN(Core);
86 scoped_refptr<Core> core_
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
non_blocking_invalidation_notifier.cc 17 class NonBlockingInvalidationNotifier::Core
18 : public base::RefCountedThreadSafe<NonBlockingInvalidationNotifier::Core>,
22 Core();
45 base::RefCountedThreadSafe<NonBlockingInvalidationNotifier::Core>;
47 ~Core();
52 DISALLOW_COPY_AND_ASSIGN(Core);
55 NonBlockingInvalidationNotifier::Core::Core()
59 NonBlockingInvalidationNotifier::Core::~Core() {
    [all...]
  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.cc 24 class GaiaOAuthClient::Core
25 : public base::RefCountedThreadSafe<GaiaOAuthClient::Core>,
28 Core(const std::string& gaia_url,
35 virtual ~Core() { }
73 void GaiaOAuthClient::Core::GetTokensFromAuthCode(
87 void GaiaOAuthClient::Core::RefreshToken(
101 void GaiaOAuthClient::Core::MakeGaiaRequest(
116 void GaiaOAuthClient::Core::OnURLFetchComplete(
139 void GaiaOAuthClient::Core::HandleResponse(
190 core_ = new Core(gaia_url, context_getter)
    [all...]
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Core.pm 1 package Perf::Trace::Core;
166 Perf::Trace::Core - Perl extension for perf script
170 use Perf::Trace::Core
  /external/chromium/net/proxy/
polling_proxy_config_service.cc 19 class PollingProxyConfigService::Core
20 : public base::RefCountedThreadSafe<PollingProxyConfigService::Core> {
22 Core(base::TimeDelta poll_interval,
93 NewRunnableMethod(this, &Core::PollOnWorkerThread, get_config_func_),
106 NewRunnableMethod(this, &Core::GetConfigCompleted, config));
179 : core_(new Core(poll_interval, get_config_func)) {
sync_host_resolver_bridge.cc 17 // SyncHostResolverBridge::Core ----------------------------------------------
19 class SyncHostResolverBridge::Core
20 : public base::RefCountedThreadSafe<SyncHostResolverBridge::Core> {
22 Core(HostResolver* resolver, MessageLoop* host_resolver_loop);
37 friend class base::RefCountedThreadSafe<SyncHostResolverBridge::Core>;
55 net::CompletionCallbackImpl<Core> callback_;
71 DISALLOW_COPY_AND_ASSIGN(Core);
74 SyncHostResolverBridge::Core::Core(HostResolver* host_resolver,
79 callback_(this, &Core::OnResolveCompletion))
    [all...]
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/src/
omx_rpc_utils.c 81 char Core[MAX_CORENAME_LENGTH];
98 Core[i] = *str;
102 Core[i] = '\0';
111 DOMX_DEBUG(" CORE NAME RECOVERED: %s", Core);
118 if (strcmp(Core, Core_Array[i]) == 0)
144 /* Implementation returns only current core ID - But this is a place holder to abstract out the
145 default server and other additional servers available on the current core. This additional servers
201 * @brief This function gets the target core id by parsing the component name.
203 * <OMX>.<Company Name>.<Core Name>.<Domain>.<Component Details> wit
    [all...]
  /external/chromium/net/http/
partial_data.cc 41 // A core object that can be detached from the Partialdata object at destruction
43 class PartialData::Core {
45 // Build a new core object. Lifetime management is automatic.
46 static Core* CreateCore(PartialData* owner) {
47 return new Core(owner);
61 explicit Core(PartialData* owner);
62 ~Core();
69 net::CompletionCallbackImpl<Core> callback_;
70 DISALLOW_COPY_AND_ASSIGN(Core);
73 PartialData::Core::Core(PartialData* owner
174 Core* core = Core::CreateCore(this); local
    [all...]
  /external/chromium/chrome/common/net/
url_fetcher.cc 33 class URLFetcher::Core
34 : public base::RefCountedThreadSafe<URLFetcher::Core>,
41 Core(URLFetcher* fetcher,
70 friend class base::RefCountedThreadSafe<URLFetcher::Core>;
77 void AddURLFetcherCore(Core* core);
78 void RemoveURLFetcherCore(Core* core);
87 std::set<Core*> fetchers_;
92 virtual ~Core();
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_win.cc 62 // is destroyed while an operation is in progress, the Core is detached and it
65 class TCPClientSocketWin::Core : public base::RefCounted<Core> {
67 explicit Core(TCPClientSocketWin* socket);
100 friend class base::RefCounted<Core>;
104 explicit ReadDelegate(Core* core) : core_(core) {}
111 Core* const core_;
116 explicit WriteDelegate(Core* core) : core_(core) {
    [all...]
  /external/chromium/chrome/browser/sync/glue/
sync_backend_host.h 159 // See the implementation and Core::DoShutdown for details.
260 class Core : public base::RefCountedThreadSafe<SyncBackendHost::Core>,
265 explicit Core(SyncBackendHost* backend);
267 // SyncManager::Observer implementation. The Core just acts like an air
375 // 3) Destroy this Core. That will delete syncapi components in a safe order
379 // Posts a config request on the core thread.
425 friend class base::RefCountedThreadSafe<SyncBackendHost::Core>;
428 virtual ~Core();
473 // Called from Core::OnSyncCycleCompleted to handle updating fronten
    [all...]
sync_backend_host.cc 61 : core_(new Core(ALLOW_THIS_IN_INITIALIZER_LIST(this))),
144 InitCore(Core::DoInitializeOptions(
201 void SyncBackendHost::InitCore(const Core::DoInitializeOptions& options) {
203 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoInitialize,
210 &SyncBackendHost::Core::DoUpdateCredentials,
216 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoStartSyncing));
237 NewRunnableMethod(core_.get(), &SyncBackendHost::Core::DoSetPassphrase,
249 &SyncBackendHost::Core::DoShutdown,
266 // frontend_loop_ by our Core) will epically fail because the CRT won't be
406 &SyncBackendHost::Core::FinishConfigureDataTypes))
    [all...]

Completed in 852 milliseconds