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

1 2 3

  /external/chromium_org/net/proxy/
network_delegate_error_observer.cc 15 // NetworkDelegateErrorObserver::Core -----------------------------------------
17 class NetworkDelegateErrorObserver::Core
18 : public base::RefCountedThreadSafe<NetworkDelegateErrorObserver::Core> {
20 Core(NetworkDelegate* network_delegate, base::MessageLoopProxy* origin_loop);
27 friend class base::RefCountedThreadSafe<NetworkDelegateErrorObserver::Core>;
29 virtual ~Core();
34 DISALLOW_COPY_AND_ASSIGN(Core);
37 NetworkDelegateErrorObserver::Core::Core(NetworkDelegate* network_delegate,
44 NetworkDelegateErrorObserver::Core::~Core() {
    [all...]
polling_proxy_config_service.cc 21 class PollingProxyConfigService::Core
22 : public base::RefCountedThreadSafe<PollingProxyConfigService::Core> {
24 Core(base::TimeDelta poll_interval,
95 base::Bind(&Core::PollOnWorkerThread, this, get_config_func_),
100 friend class base::RefCountedThreadSafe<Core>;
101 ~Core() {}
110 FROM_HERE, base::Bind(&Core::GetConfigCompleted, this, config));
183 : core_(new Core(poll_interval, get_config_func)) {
  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.cc 15 class ThreadAwareCallbackBase::Core : public base::RefCountedThreadSafe<Core> {
17 Core() : aborted_(false) {
28 friend class base::RefCountedThreadSafe<Core>;
29 ~Core() {
37 core_(new Core()) {
55 RunWhileLocked(base::Bind(&Core::RunIfNotAborted, core_, closure)),
  /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_org/ppapi/cpp/
core.h 19 class Core {
108 Core(const PPB_Core* inter) : interface_(inter) {}
111 Core(const Core& other);
112 Core& operator=(const Core& other);
  /external/chromium_org/ppapi/tests/
test_core.cc 7 #include "ppapi/cpp/core.h"
12 REGISTER_TEST_CASE(Core);
24 pp::Core* core = pp::Module::Get()->core(); local
25 PP_Time time1 = core->GetTime();
30 PP_Time time2 = core->GetTime();
37 pp::Core* core = pp::Module::Get()->core(); local
    [all...]
  /external/chromium_org/remoting/client/
audio_decode_scheduler.cc 16 class AudioDecodeScheduler::Core : public base::RefCountedThreadSafe<Core> {
18 Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
30 friend class base::RefCountedThreadSafe<Core>;
32 virtual ~Core();
46 DISALLOW_COPY_AND_ASSIGN(Core);
49 AudioDecodeScheduler::Core::Core(
58 AudioDecodeScheduler::Core::~Core() {
    [all...]
  /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/chromium_org/chrome/browser/signin/
profile_oauth2_token_service_request.cc 19 class ProfileOAuth2TokenServiceRequest::Core
20 : public base::RefCountedThreadSafe<ProfileOAuth2TokenServiceRequest::Core>,
23 // Note the thread where an instance of Core is constructed is referred to as
25 Core(Profile* profile,
43 base::RefCountedThreadSafe<ProfileOAuth2TokenServiceRequest::Core>;
47 virtual ~Core();
74 DISALLOW_COPY_AND_ASSIGN(Core);
77 ProfileOAuth2TokenServiceRequest::Core::Core(
87 ProfileOAuth2TokenServiceRequest::Core::~Core()
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 18 : core_(new Core(context_getter)) {}
43 SyncWebSocketImpl::Core::Core(net::URLRequestContextGetter* context_getter)
48 bool SyncWebSocketImpl::Core::IsConnected() {
53 bool SyncWebSocketImpl::Core::Connect(const GURL& url) {
58 base::Bind(&SyncWebSocketImpl::Core::ConnectOnIO,
64 bool SyncWebSocketImpl::Core::Send(const std::string& message) {
69 base::Bind(&SyncWebSocketImpl::Core::SendOnIO,
76 SyncWebSocketImpl::Core::ReceiveNextMessage(
94 bool SyncWebSocketImpl::Core::HasNextMessage()
    [all...]
sync_websocket_impl.h 48 class Core : public WebSocketListener,
49 public base::RefCountedThreadSafe<Core, CoreTraits> {
51 explicit Core(net::URLRequestContextGetter* context_getter);
66 friend class base::RefCountedThreadSafe<Core, CoreTraits>;
67 friend class base::DeleteHelper<Core>;
70 virtual ~Core();
103 scoped_refptr<Core> core_;
107 static void Destruct(const SyncWebSocketImpl::Core* core) {
108 core->OnDestruct()
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
media_stream_ui_proxy.cc 14 class MediaStreamUIProxy::Core {
16 explicit Core(const base::WeakPtr<MediaStreamUIProxy>& proxy,
18 ~Core();
35 base::WeakPtrFactory<Core> weak_factory_;
37 DISALLOW_COPY_AND_ASSIGN(Core);
40 MediaStreamUIProxy::Core::Core(const base::WeakPtr<MediaStreamUIProxy>& proxy,
47 MediaStreamUIProxy::Core::~Core() {
51 void MediaStreamUIProxy::Core::RequestAccess
    [all...]
  /external/chromium_org/jingle/notifier/listener/
non_blocking_push_client.cc 17 class NonBlockingPushClient::Core
18 : public base::RefCountedThreadSafe<NonBlockingPushClient::Core>,
22 explicit Core(
51 friend class base::RefCountedThreadSafe<NonBlockingPushClient::Core>;
54 virtual ~Core();
62 DISALLOW_COPY_AND_ASSIGN(Core);
65 NonBlockingPushClient::Core::Core(
72 NonBlockingPushClient::Core::~Core() {
    [all...]
  /external/chromium_org/net/base/
directory_lister.cc 92 : core_(new Core(dir, false, ALPHA_DIRS_FIRST, this)),
102 : core_(new Core(dir, recursive, sort, this)),
120 DirectoryLister::Core::Core(const base::FilePath& dir,
131 DirectoryLister::Core::~Core() {}
133 bool DirectoryLister::Core::Start() {
137 FROM_HERE, base::Bind(&Core::StartInternal, this), true);
140 void DirectoryLister::Core::Cancel() {
144 void DirectoryLister::Core::StartInternal()
    [all...]
  /external/chromium_org/remoting/host/
host_window_proxy.cc 16 class HostWindowProxy::Core
17 : public base::RefCountedThreadSafe<Core>,
20 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
31 friend class base::RefCountedThreadSafe<Core>;
32 virtual ~Core();
63 DISALLOW_COPY_AND_ASSIGN(Core);
72 // Detach |host_window| from the calling thread so that |Core| could run it on
75 core_ = new Core(caller_task_runner, ui_task_runner, host_window.Pass());
91 HostWindowProxy::Core::Core(
    [all...]
local_input_monitor_win.cc 16 #include "third_party/skia/include/core/SkPoint.h"
38 // The actual implementation resides in LocalInputMonitorWin::Core class.
39 class Core : public base::RefCountedThreadSafe<Core> {
41 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
49 friend class base::RefCountedThreadSafe<Core>;
50 virtual ~Core();
76 DISALLOW_COPY_AND_ASSIGN(Core);
79 scoped_refptr<Core> core_;
88 : core_(new Core(caller_task_runner
    [all...]
  /external/chromium_org/remoting/host/setup/
native_messaging_reader.cc 36 class NativeMessagingReader::Core {
38 Core(base::PlatformFile handle,
42 ~Core();
62 DISALLOW_COPY_AND_ASSIGN(Core);
65 NativeMessagingReader::Core::Core(
76 NativeMessagingReader::Core::~Core() {}
78 void NativeMessagingReader::Core::ReadMessage() {
126 void NativeMessagingReader::Core::NotifyEof()
    [all...]
service_client.cc 18 class ServiceClient::Core
19 : public base::RefCountedThreadSafe<ServiceClient::Core>,
22 Core(const std::string& chromoting_hosts_url,
44 friend class base::RefCountedThreadSafe<Core>;
45 virtual ~Core() {}
67 void ServiceClient::Core::RegisterHost(
88 void ServiceClient::Core::UnregisterHost(
101 void ServiceClient::Core::MakeGaiaRequest(
117 void ServiceClient::Core::OnURLFetchComplete(
123 void ServiceClient::Core::HandleResponse(const net::URLFetcher* source)
    [all...]
  /external/chromium_org/remoting/host/win/
rdp_client.cc 35 // The core of RdpClient is ref-counted since it services calls and notifies
38 class RdpClient::Core
39 : public base::RefCountedThreadSafe<Core>,
42 Core(
61 friend class base::RefCountedThreadSafe<Core>;
62 virtual ~Core();
83 scoped_refptr<Core> self_;
85 DISALLOW_COPY_AND_ASSIGN(Core);
96 core_ = new Core(caller_task_runner, ui_task_runner, event_handler);
112 RdpClient::Core::Core
    [all...]
session_input_injector.cc 46 class SessionInputInjectorWin::Core
47 : public base::RefCountedThreadSafe<SessionInputInjectorWin::Core>,
50 Core(
69 friend class base::RefCountedThreadSafe<Core>;
70 virtual ~Core();
94 DISALLOW_COPY_AND_ASSIGN(Core);
97 SessionInputInjectorWin::Core::Core(
108 void SessionInputInjectorWin::Core::Start(
113 base::Bind(&Core::Start, this, base::Passed(&client_clipboard)))
    [all...]
  /external/chromium_org/sync/notifier/
non_blocking_invalidator.cc 20 class NonBlockingInvalidator::Core
21 : public base::RefCountedThreadSafe<NonBlockingInvalidator::Core>,
27 explicit Core(
52 base::RefCountedThreadSafe<NonBlockingInvalidator::Core>;
54 virtual ~Core();
61 DISALLOW_COPY_AND_ASSIGN(Core);
64 NonBlockingInvalidator::Core::Core(
70 NonBlockingInvalidator::Core::~Core() {
    [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

Completed in 508 milliseconds

1 2 3