Searched defs:Core (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/mojo/bindings/js/
H A Dcore.h13 class Core { class in namespace:mojo::js
/external/chromium_org/google_apis/gcm/base/
H A Dmcs_message.cc12 MCSMessage::Core::Core() {} function in class:gcm::MCSMessage::Core
14 MCSMessage::Core::Core(uint8 tag, function in class:gcm::MCSMessage::Core
21 MCSMessage::Core::Core( function in class:gcm::MCSMessage::Core
27 MCSMessage::Core::~Core() {}
29 const google::protobuf::MessageLite& MCSMessage::Core::Get() const {
38 core_(new Core(tag
[all...]
H A Dmcs_message.h57 class Core : public base::RefCountedThreadSafe<MCSMessage::Core> { class in class:gcm::MCSMessage
59 Core();
60 Core(uint8 tag, const google::protobuf::MessageLite& protobuf);
61 Core(uint8 tag, scoped_ptr<const google::protobuf::MessageLite> protobuf);
66 friend class base::RefCountedThreadSafe<MCSMessage::Core>;
67 ~Core();
72 DISALLOW_COPY_AND_ASSIGN(Core);
80 scoped_refptr<const Core> core_;
/external/chromium_org/net/proxy/
H A Dnetwork_delegate_error_observer.cc15 // NetworkDelegateErrorObserver::Core -----------------------------------------
17 class NetworkDelegateErrorObserver::Core class in class:net::NetworkDelegateErrorObserver
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, function in class:net::NetworkDelegateErrorObserver::Core
44 NetworkDelegateErrorObserver::Core
[all...]
H A Dpolling_proxy_config_service.cc21 class PollingProxyConfigService::Core class in class:net::PollingProxyConfigService
22 : public base::RefCountedThreadSafe<PollingProxyConfigService::Core> {
24 Core(base::TimeDelta poll_interval, function in class:net::PollingProxyConfigService::Core
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/
H A Dthread_aware_callback.cc15 class ThreadAwareCallbackBase::Core : public base::RefCountedThreadSafe<Core> { class in class:ppapi::internal::ThreadAwareCallbackBase
17 Core() : aborted_(false) {} function in class:ppapi::internal::ThreadAwareCallbackBase::Core
27 friend class base::RefCountedThreadSafe<Core>;
28 ~Core() {}
35 core_(new Core()) {
51 RunWhileLocked(base::Bind(&Core::RunIfNotAborted, core_, closure)),
/external/chromium_org/base/ios/
H A Dscoped_critical_action.h33 // Core logic; ScopedCriticalAction should not be reference counted so
37 class Core : public base::RefCountedThreadSafe<Core> { class in class:base::ios::ScopedCriticalAction
39 Core();
45 friend base::RefCountedThreadSafe<Core>;
46 ~Core();
56 DISALLOW_COPY_AND_ASSIGN(Core);
60 scoped_refptr<Core> core_;
/external/chromium_org/ppapi/cpp/
H A Dcore.h19 class Core { class in namespace:pp
108 Core(const PPB_Core* inter) : interface_(inter) {} function in class:pp::Core
111 Core(const Core& other);
112 Core& operator=(const Core& other);
/external/chromium_org/ppapi/tests/
H A Dtest_core.cc12 REGISTER_TEST_CASE(Core); variable
24 pp::Core* core = pp::Module::Get()->core();
37 pp::Core* core = pp::Module::Get()->core();
/external/chromium_org/sync/internal_api/public/attachments/
H A Dattachment_service_proxy.h66 // Core does the work of proxying calls to AttachmentService methods from one
73 // Core is ref-counted because we want to allow AttachmentServiceProxy to be
74 // copy-constructable while allowing for different implementations of Core
79 class SYNC_EXPORT Core : public AttachmentService, class in class:syncer::AttachmentServiceProxy
80 public base::RefCountedThreadSafe<Core> {
83 Core(const base::WeakPtr<syncer::AttachmentService>& wrapped);
96 friend class base::RefCountedThreadSafe<Core>;
97 virtual ~Core();
102 DISALLOW_COPY_AND_ASSIGN(Core);
105 // Used in tests to create an AttachmentServiceProxy with a custom Core
[all...]
/external/chromium_org/chrome/test/chromedriver/net/
H A Dsync_websocket_impl.cc18 : core_(new Core(context_getter)) {}
43 SyncWebSocketImpl::Core::Core(net::URLRequestContextGetter* context_getter) function in class:SyncWebSocketImpl::Core
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,
75 SyncWebSocket::StatusCode SyncWebSocketImpl::Core::ReceiveNextMessage(
94 bool SyncWebSocketImpl::Core
[all...]
H A Dsync_websocket_impl.h48 class Core : public WebSocketListener, class in class:SyncWebSocketImpl
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) {
/external/chromium_org/remoting/client/
H A Daudio_decode_scheduler.cc16 class AudioDecodeScheduler::Core : public base::RefCountedThreadSafe<Core> { class in class:remoting::AudioDecodeScheduler
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( function in class:remoting::AudioDecodeScheduler::Core
58 AudioDecodeScheduler::Core::~Core() {
[all...]
/external/chromium_org/remoting/host/native_messaging/
H A Dnative_messaging_reader.cc36 class NativeMessagingReader::Core { class in class:remoting::NativeMessagingReader
38 Core(base::File file,
42 ~Core();
62 DISALLOW_COPY_AND_ASSIGN(Core);
65 NativeMessagingReader::Core::Core( function in class:remoting::NativeMessagingReader::Core
76 NativeMessagingReader::Core::~Core() {}
78 void NativeMessagingReader::Core::ReadMessage() {
126 void NativeMessagingReader::Core
[all...]
/external/chromium_org/sync/internal_api/attachments/
H A Dattachment_service_proxy.cc46 : wrapped_task_runner_(wrapped_task_runner), core_(new Core(wrapped)) {
52 const scoped_refptr<Core>& core)
102 AttachmentServiceProxy::Core::Core( function in class:syncer::AttachmentServiceProxy::Core
107 AttachmentServiceProxy::Core::~Core() {
110 AttachmentStore* AttachmentServiceProxy::Core::GetStore() {
114 void AttachmentServiceProxy::Core::GetOrDownloadAttachments(
123 void AttachmentServiceProxy::Core::DropAttachments(
132 void AttachmentServiceProxy::Core
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dshared_desktop_frame.cc18 class SharedDesktopFrame::Core { class in class:webrtc::SharedDesktopFrame
20 Core(DesktopFrame* frame) : frame_(frame) {} function in class:webrtc::SharedDesktopFrame::Core
39 virtual ~Core() {}
44 DISALLOW_COPY_AND_ASSIGN(Core);
52 scoped_refptr<Core> core(new Core(desktop_frame));
72 SharedDesktopFrame::SharedDesktopFrame(scoped_refptr<Core> core)
/external/chromium_org/mojo/system/
H A Dcore.h34 // |Core| is an object that implements the Mojo system calls. All public methods
36 class MOJO_SYSTEM_IMPL_EXPORT Core { class in namespace:mojo::system
41 explicit Core(scoped_ptr<embedder::PlatformSupport> platform_support);
42 virtual ~Core();
127 friend bool internal::ShutdownCheckNoLeaks(Core*);
150 DISALLOW_COPY_AND_ASSIGN(Core);
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DCore.pm1 package Perf::Trace::Core;
166 Perf::Trace::Core - Perl extension for perf script
170 use Perf::Trace::Core
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher.cc49 class Core : public base::RefCountedThreadSafe<Core> { class in class:extensions::__anon3768::NativeProcessLauncherImpl
51 Core(bool allow_user_level_hosts, intptr_t native_window);
58 friend class base::RefCountedThreadSafe<Core>;
59 virtual ~Core();
82 DISALLOW_COPY_AND_ASSIGN(Core);
85 scoped_refptr<Core> core_;
90 NativeProcessLauncherImpl::Core::Core(bool allow_user_level_hosts, function in class:extensions::__anon3768::NativeProcessLauncherImpl::Core
97 NativeProcessLauncherImpl::Core
[all...]
/external/chromium_org/content/browser/net/
H A Dview_http_cache_job_factory.cc30 core_(new Core),
51 class Core : public base::RefCounted<Core> { class in class:content::__anon7271::ViewHttpCacheJob
53 Core() function in class:content::__anon7271::ViewHttpCacheJob::Core
55 callback_(base::Bind(&Core::OnIOComplete, this)) {
70 friend class base::RefCounted<Core>;
72 ~Core() {}
83 DISALLOW_COPY_AND_ASSIGN(Core);
91 scoped_refptr<Core> core_;
131 int ViewHttpCacheJob::Core
[all...]
/external/chromium_org/jingle/notifier/listener/
H A Dnon_blocking_push_client.cc17 class NonBlockingPushClient::Core class in class:notifier::NonBlockingPushClient
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( function in class:notifier::NonBlockingPushClient::Core
72 NonBlockingPushClient::Core::~Core() {
[all...]
/external/chromium_org/net/base/
H A Ddirectory_lister.cc90 : core_(new Core(dir, false, ALPHA_DIRS_FIRST, this)),
100 : core_(new Core(dir, recursive, sort, this)),
118 DirectoryLister::Core::Core(const base::FilePath& dir, function in class:net::DirectoryLister::Core
129 DirectoryLister::Core::~Core() {}
131 bool DirectoryLister::Core::Start() {
135 FROM_HERE, base::Bind(&Core::StartInternal, this), true);
138 void DirectoryLister::Core::Cancel() {
142 void DirectoryLister::Core
[all...]
/external/chromium_org/remoting/host/
H A Dhost_window_proxy.cc17 class HostWindowProxy::Core class in class:remoting::HostWindowProxy
18 : public base::RefCountedThreadSafe<Core>,
21 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
32 friend class base::RefCountedThreadSafe<Core>;
33 virtual ~Core();
66 DISALLOW_COPY_AND_ASSIGN(Core);
75 // Detach |host_window| from the calling thread so that |Core| could run it on
78 core_ = new Core(caller_task_runner, ui_task_runner, host_window.Pass());
94 HostWindowProxy::Core::Core( function in class:remoting::HostWindowProxy::Core
[all...]
H A Dinput_injector_win.cc75 // The actual implementation resides in InputInjectorWin::Core class.
76 class Core : public base::RefCountedThreadSafe<Core> { class in class:remoting::__anon10431::InputInjectorWin
78 Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
95 friend class base::RefCountedThreadSafe<Core>;
96 virtual ~Core();
106 DISALLOW_COPY_AND_ASSIGN(Core);
109 scoped_refptr<Core> core_;
117 core_ = new Core(main_task_runner, ui_task_runner);
145 InputInjectorWin::Core function in class:remoting::__anon10431::InputInjectorWin::Core
[all...]
H A Dlocal_input_monitor_win.cc38 // The actual implementation resides in LocalInputMonitorWin::Core class.
39 class Core : public base::RefCountedThreadSafe<Core> { class in class:remoting::__anon10443::LocalInputMonitorWin
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,
98 LocalInputMonitorWin::Core function in class:remoting::__anon10443::LocalInputMonitorWin::Core
[all...]

Completed in 2757 milliseconds

123