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

12 3

  /external/chromium_org/content/browser/renderer_host/media/
media_stream_ui_proxy.cc 16 class MediaStreamUIProxy::Core {
18 explicit Core(const base::WeakPtr<MediaStreamUIProxy>& proxy,
20 ~Core();
38 base::WeakPtrFactory<Core> weak_factory_;
40 DISALLOW_COPY_AND_ASSIGN(Core);
43 MediaStreamUIProxy::Core::Core(const base::WeakPtr<MediaStreamUIProxy>& proxy,
50 MediaStreamUIProxy::Core::~Core() {
54 void MediaStreamUIProxy::Core::RequestAccess
    [all...]
  /external/chromium_org/mojo/system/
core.cc 5 #include "mojo/system/core.h"
30 // Mojo primitives are implemented by the singleton |Core| object. Most calls
31 // are for a "primary" handle (the first argument). |Core::GetDispatcher()| is
34 // attached to objects and are implemented by |Core| itself.
76 Core::Core() {
79 Core::~Core() {
82 MojoHandle Core::AddDispatcher(
88 scoped_refptr<Dispatcher> Core::GetDispatcher(MojoHandle handle)
    [all...]
  /external/chromium_org/remoting/host/
input_injector_mac.cc 78 // The actual implementation resides in InputInjectorMac::Core class.
79 class Core : public base::RefCountedThreadSafe<Core> {
81 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
97 friend class base::RefCountedThreadSafe<Core>;
98 virtual ~Core();
107 DISALLOW_COPY_AND_ASSIGN(Core);
110 scoped_refptr<Core> core_;
117 core_ = new Core(task_runner);
145 InputInjectorMac::Core::Core
    [all...]
input_injector_win.cc 75 // The actual implementation resides in InputInjectorWin::Core class.
76 class Core : public base::RefCountedThreadSafe<Core> {
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::Core
    [all...]
local_input_monitor_linux.cc 45 // The actual implementation resides in LocalInputMonitorLinux::Core class.
46 class Core
47 : public base::RefCountedThreadSafe<Core>,
50 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
58 friend class base::RefCountedThreadSafe<Core>;
59 virtual ~Core();
97 DISALLOW_COPY_AND_ASSIGN(Core);
100 scoped_refptr<Core> core_;
109 : core_(new Core(caller_task_runner,
119 LocalInputMonitorLinux::Core::Core
    [all...]
input_injector_linux.cc 112 // The actual implementation resides in InputInjectorLinux::Core class.
113 class Core : public base::RefCountedThreadSafe<Core> {
115 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
133 friend class base::RefCountedThreadSafe<Core>;
134 virtual ~Core();
179 DISALLOW_COPY_AND_ASSIGN(Core);
182 scoped_refptr<Core> core_;
189 core_ = new Core(task_runner);
221 InputInjectorLinux::Core::Core
    [all...]
  /external/chromium_org/remoting/host/setup/
service_client.cc 19 class ServiceClient::Core
20 : public base::RefCountedThreadSafe<ServiceClient::Core>,
23 Core(const std::string& chromoting_hosts_url,
46 friend class base::RefCountedThreadSafe<Core>;
47 virtual ~Core() {}
69 void ServiceClient::Core::RegisterHost(
94 void ServiceClient::Core::UnregisterHost(
107 void ServiceClient::Core::MakeChromotingRequest(
123 void ServiceClient::Core::OnURLFetchComplete(
129 void ServiceClient::Core::HandleResponse(const net::URLFetcher* source)
    [all...]
  /external/chromium_org/remoting/host/win/
session_input_injector.cc 47 class SessionInputInjectorWin::Core
48 : public base::RefCountedThreadSafe<SessionInputInjectorWin::Core>,
51 Core(
71 friend class base::RefCountedThreadSafe<Core>;
72 virtual ~Core();
96 DISALLOW_COPY_AND_ASSIGN(Core);
99 SessionInputInjectorWin::Core::Core(
110 void SessionInputInjectorWin::Core::Start(
115 base::Bind(&Core::Start, this, base::Passed(&client_clipboard)))
    [all...]
wts_session_process_delegate.cc 42 class WtsSessionProcessDelegate::Core
43 : public base::RefCountedThreadSafe<Core>,
47 Core(scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
65 friend class base::RefCountedThreadSafe<Core>;
66 virtual ~Core();
141 DISALLOW_COPY_AND_ASSIGN(Core);
144 WtsSessionProcessDelegate::Core::Core(
159 bool WtsSessionProcessDelegate::Core::Initialize(uint32 session_id) {
211 base::Bind(&Core::InitializeJob, this, base::Passed(&job_wrapper)))
    [all...]
  /external/chromium_org/net/base/
directory_lister.h 77 class Core : public base::RefCountedThreadSafe<Core> {
79 Core(const base::FilePath& dir,
89 friend class base::RefCountedThreadSafe<Core>;
92 ~Core();
109 DISALLOW_COPY_AND_ASSIGN(Core);
115 const scoped_refptr<Core> core_;
  /hardware/ti/omap4-aah/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...]
  /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_org/chrome/service/cloud_print/
cloud_print_proxy_backend.cc 37 class CloudPrintProxyBackend::Core
38 : public base::RefCountedThreadSafe<CloudPrintProxyBackend::Core>,
45 Core(CloudPrintProxyBackend* backend,
89 friend class base::RefCountedThreadSafe<Core>;
91 virtual ~Core() {}
96 // NotifyXXX is how the Core communicates with the frontend across
156 DISALLOW_COPY_AND_ASSIGN(Core);
168 core_ = new Core(this, settings, oauth_client_info, enable_job_poll);
179 base::Bind(&CloudPrintProxyBackend::Core::DoInitializeWithToken,
191 base::Bind(&CloudPrintProxyBackend::Core::DoInitializeWithRobotToken
    [all...]
print_system_win.cc 220 JobSpoolerWin() : core_(new Core) {}
245 // We use a Core class because we want a separate RefCountedThreadSafe
247 class Core : public ServiceUtilityProcessHost::Client,
250 Core()
257 ~Core() {}
438 base::Bind(&JobSpoolerWin::Core::RenderPDFPagesInSandbox, this,
531 DISALLOW_COPY_AND_ASSIGN(Core);
533 scoped_refptr<Core> core_;
  /external/chromium_org/components/invalidation/
gcm_invalidation_bridge.cc 11 #include "components/signin/core/browser/profile_oauth2_token_service.h"
12 #include "components/signin/core/browser/signin_manager.h"
33 // Core should be very simple class that implements GCMNetwrokChannelDelegate
36 class GCMInvalidationBridge::Core : public syncer::GCMNetworkChannelDelegate,
39 Core(base::WeakPtr<GCMInvalidationBridge> bridge,
41 virtual ~Core();
70 base::WeakPtrFactory<Core> weak_factory_;
72 DISALLOW_COPY_AND_ASSIGN(Core);
75 GCMInvalidationBridge::Core::Core(
    [all...]
non_blocking_invalidator.cc 95 class NonBlockingInvalidator::Core
96 : public base::RefCountedThreadSafe<NonBlockingInvalidator::Core>,
101 explicit Core(
122 base::RefCountedThreadSafe<NonBlockingInvalidator::Core>;
124 virtual ~Core();
131 DISALLOW_COPY_AND_ASSIGN(Core);
134 NonBlockingInvalidator::Core::Core(
140 NonBlockingInvalidator::Core::~Core() {
    [all...]
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device.cc 34 // Maximum CPU time percentage of a single core that can be consumed for desktop
52 class DesktopCaptureDevice::Core
53 : public base::RefCountedThreadSafe<Core>,
56 Core(scoped_refptr<base::SequencedTaskRunner> task_runner,
69 friend class base::RefCountedThreadSafe<Core>;
70 virtual ~Core();
146 DISALLOW_COPY_AND_ASSIGN(Core);
149 DesktopCaptureDevice::Core::Core(
166 DesktopCaptureDevice::Core::~Core()
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_oauth_client.cc 33 class GaiaOAuthClient::Core
34 : public base::RefCountedThreadSafe<GaiaOAuthClient::Core>,
37 Core(net::URLRequestContextGetter* request_context_getter)
67 friend class base::RefCountedThreadSafe<Core>;
78 virtual ~Core() {}
97 void GaiaOAuthClient::Core::GetTokensFromAuthCode(
117 void GaiaOAuthClient::Core::RefreshToken(
142 void GaiaOAuthClient::Core::GetUserEmail(const std::string& oauth_access_token,
151 void GaiaOAuthClient::Core::GetUserId(const std::string& oauth_access_token,
160 void GaiaOAuthClient::Core::GetUserInfo(const std::string& oauth_access_token
    [all...]
oauth2_token_service_request.cc 21 // Core serves as the base class for OAuth2TokenService operations. Each
24 // Core is used like this:
36 // 5. Core is destroyed on owner thread.
37 class OAuth2TokenServiceRequest::Core
39 public base::RefCountedThreadSafe<OAuth2TokenServiceRequest::Core> {
41 // Note the thread where an instance of Core is constructed is referred to as
43 Core(OAuth2TokenServiceRequest* owner, TokenServiceProvider* provider);
45 // Starts the core. Must be called on the owner thread.
48 // Stops the core. Must be called on the owner thread.
56 // Core must be destroyed on the owner thread. If data members must b
    [all...]
  /external/chromium_org/jingle/glue/
pseudotcp_adapter.cc 25 class PseudoTcpAdapter::Core : public cricket::IPseudoTcpNotify,
26 public base::RefCounted<Core> {
28 Core(net::Socket* socket);
59 friend class base::RefCounted<Core>;
60 virtual ~Core();
107 base::OneShotTimer<Core> timer_;
109 DISALLOW_COPY_AND_ASSIGN(Core);
113 PseudoTcpAdapter::Core::Core(net::Socket* socket)
123 PseudoTcpAdapter::Core::~Core()
    [all...]
  /external/chromium_org/net/http/
partial_data.cc 30 // A core object that can be detached from the Partialdata object at destruction
32 class PartialData::Core {
34 // Build a new core object. Lifetime management is automatic.
35 static Core* CreateCore(PartialData* owner) {
36 return new Core(owner);
50 explicit Core(PartialData* owner);
51 ~Core();
59 DISALLOW_COPY_AND_ASSIGN(Core);
62 PartialData::Core::Core(PartialData* owner
172 Core* core = Core::CreateCore(this); local
    [all...]
  /external/chromium_org/remoting/client/
software_video_renderer.cc 79 class SoftwareVideoRenderer::Core {
81 Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
84 ~Core();
126 base::WeakPtrFactory<Core> weak_factory_;
129 SoftwareVideoRenderer::Core::Core(
140 SoftwareVideoRenderer::Core::~Core() {
143 void SoftwareVideoRenderer::Core::Initialize(const SessionConfig& config) {
165 void SoftwareVideoRenderer::Core::DecodePacket(scoped_ptr<VideoPacket> packet
    [all...]
  /external/chromium_org/mojo/public/java/src/org/chromium/mojo/system/
Core.java 10 * Core mojo interface giving access to the base operations. See |src/mojo/public/c/system/core.h|
13 public interface Core {
  /external/chromium_org/chrome/browser/
pepper_flash_settings_manager.cc 35 class PepperFlashSettingsManager::Core
37 public base::RefCountedThreadSafe<Core, BrowserThread::DeleteOnIOThread> {
39 Core(base::WeakPtr<PepperFlashSettingsManager> manager,
44 // Notifies the core that it has been detached. Afterwards, no method should
72 friend class base::DeleteHelper<Core>;
122 virtual ~Core();
212 PepperFlashSettingsManager::Core::Core(
223 PepperFlashSettingsManager::Core::~Core() {
    [all...]
  /external/chromium_org/net/dns/
mdns_client_impl.cc 173 MDnsClientImpl::Core::Core(MDnsClientImpl* client)
177 MDnsClientImpl::Core::~Core() {
181 bool MDnsClientImpl::Core::Init(MDnsSocketFactory* socket_factory) {
185 bool MDnsClientImpl::Core::SendQuery(uint16 rrtype, std::string name) {
196 void MDnsClientImpl::Core::HandlePacket(DnsResponse* response,
265 void MDnsClientImpl::Core::NotifyNsecRecord(const RecordParsed* record) {
297 void MDnsClientImpl::Core::OnConnectionError(int error) {
301 void MDnsClientImpl::Core::AlertListeners
    [all...]

Completed in 1595 milliseconds

12 3