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

1 2 3

  /external/chromium_org/mojo/bindings/js/
core.h 13 class Core {
  /external/chromium_org/google_apis/gcm/base/
mcs_message.cc 12 MCSMessage::Core::Core() {}
14 MCSMessage::Core::Core(uint8 tag,
21 MCSMessage::Core::Core(
27 MCSMessage::Core::~Core() {}
29 const google::protobuf::MessageLite& MCSMessage::Core::Get() const {
38 core_(new Core(tag_, protobuf))
    [all...]
mcs_message.h 57 class Core : public base::RefCountedThreadSafe<MCSMessage::Core> {
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);
79 // The refcounted core, containing the protobuf memory.
80 scoped_refptr<const Core> core_
    [all...]
  /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) {}
27 friend class base::RefCountedThreadSafe<Core>;
28 ~Core() {}
35 core_(new Core()) {
51 RunWhileLocked(base::Bind(&Core::RunIfNotAborted, core_, closure)),
  /external/chromium_org/sync/api/attachments/
attachment_service_proxy.cc 55 : wrapped_task_runner_(wrapped_task_runner), core_(new Core(wrapped)) {
61 const scoped_refptr<Core>& core)
62 : wrapped_task_runner_(wrapped_task_runner), core_(core) {
129 AttachmentServiceProxy::Core::Core(
134 AttachmentServiceProxy::Core::~Core() {
137 void AttachmentServiceProxy::Core::GetOrDownloadAttachments(
146 void AttachmentServiceProxy::Core::DropAttachments
    [all...]
attachment_service_proxy.h 68 // Core does the work of proxying calls to AttachmentService methods from one
75 // Core is ref-counted because we want to allow AttachmentServiceProxy to be
76 // copy-constructable while allowing for different implementations of Core
77 // (e.g. one type of core might own the wrapped AttachmentService).
81 class SYNC_EXPORT Core : public AttachmentService,
82 public base::RefCountedThreadSafe<Core> {
85 Core(const base::WeakPtr<syncer::AttachmentService>& wrapped);
100 friend class base::RefCountedThreadSafe<Core>;
101 virtual ~Core();
106 DISALLOW_COPY_AND_ASSIGN(Core);
    [all...]
  /external/chromium_org/base/ios/
scoped_critical_action.h 33 // Core logic; ScopedCriticalAction should not be reference counted so
37 class Core : public base::RefCountedThreadSafe<Core> {
39 Core();
45 friend base::RefCountedThreadSafe<Core>;
46 ~Core();
56 DISALLOW_COPY_AND_ASSIGN(Core);
59 // The instance of the core that drives the background task.
60 scoped_refptr<Core> core_;
  /external/chromium_org/mojo/system/
core.h 25 // |Core| is an object that implements the Mojo system calls. All public methods
27 class MOJO_SYSTEM_IMPL_EXPORT Core {
30 Core();
31 virtual ~Core();
104 friend bool internal::ShutdownCheckNoLeaks(Core*);
125 DISALLOW_COPY_AND_ASSIGN(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_org/third_party/webrtc/modules/desktop_capture/
shared_desktop_frame.cc 18 class SharedDesktopFrame::Core {
20 Core(DesktopFrame* frame) : frame_(frame) {}
39 virtual ~Core() {}
44 DISALLOW_COPY_AND_ASSIGN(Core);
52 scoped_refptr<Core> core(new Core(desktop_frame));
53 return new SharedDesktopFrame(core);
72 SharedDesktopFrame::SharedDesktopFrame(scoped_refptr<Core> core)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.cc 49 class Core : public base::RefCountedThreadSafe<Core> {
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,
97 NativeProcessLauncherImpl::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,
75 SyncWebSocket::StatusCode 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/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 90 : 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,
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::StartInternal()
    [all...]
  /external/chromium_org/remoting/host/
host_window_proxy.cc 17 class HostWindowProxy::Core
18 : public base::RefCountedThreadSafe<Core>,
21 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
32 friend class base::RefCountedThreadSafe<Core>;
33 virtual ~Core();
65 DISALLOW_COPY_AND_ASSIGN(Core);
74 // Detach |host_window| from the calling thread so that |Core| could run it on
77 core_ = new Core(caller_task_runner, ui_task_runner, host_window.Pass());
93 HostWindowProxy::Core::Core(
    [all...]
local_input_monitor_win.cc 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,
98 LocalInputMonitorWin::Core::Core
    [all...]
  /external/chromium_org/remoting/host/native_messaging/
native_messaging_reader.cc 36 class NativeMessagingReader::Core {
38 Core(base::File file,
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...]
  /external/chromium_org/remoting/host/win/
rdp_client.cc 36 // The core of RdpClient is ref-counted since it services calls and notifies
39 class RdpClient::Core
40 : public base::RefCountedThreadSafe<Core>,
43 Core(
63 friend class base::RefCountedThreadSafe<Core>;
64 virtual ~Core();
85 scoped_refptr<Core> self_;
87 DISALLOW_COPY_AND_ASSIGN(Core);
98 core_ = new Core(caller_task_runner, ui_task_runner, event_handler);
114 RdpClient::Core::Core
    [all...]
  /external/linux-tools-perf/perf-3.12.0/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_org/content/browser/net/
view_http_cache_job_factory.cc 30 core_(new Core),
51 class Core : public base::RefCounted<Core> {
53 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_;
130 int ViewHttpCacheJob::Core::Start(const net::URLRequest& request
    [all...]

Completed in 726 milliseconds

1 2 3