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

12 3

  /external/chromium_org/chrome/test/chromedriver/net/
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/google_apis/gcm/base/
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/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_org/chrome/browser/extensions/api/messaging/
native_process_launcher.cc 67 class Core : public base::RefCountedThreadSafe<Core> {
69 explicit Core(gfx::NativeView native_view);
76 friend class base::RefCountedThreadSafe<Core>;
77 virtual ~Core();
98 DISALLOW_COPY_AND_ASSIGN(Core);
101 scoped_refptr<Core> core_;
106 NativeProcessLauncherImpl::Core::Core(gfx::NativeView native_view)
111 NativeProcessLauncherImpl::Core::~Core()
    [all...]
  /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...]
  /external/chromium_org/remoting/host/
input_injector_mac.cc 52 // The actual implementation resides in InputInjectorMac::Core class.
53 class Core : public base::RefCountedThreadSafe<Core> {
55 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
70 friend class base::RefCountedThreadSafe<Core>;
71 virtual ~Core();
78 DISALLOW_COPY_AND_ASSIGN(Core);
81 scoped_refptr<Core> core_;
88 core_ = new Core(task_runner);
112 InputInjectorMac::Core::Core
    [all...]
input_injector_win.cc 46 // The actual implementation resides in InputInjectorWin::Core class.
47 class Core : public base::RefCountedThreadSafe<Core> {
49 Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
65 friend class base::RefCountedThreadSafe<Core>;
66 virtual ~Core();
75 DISALLOW_COPY_AND_ASSIGN(Core);
78 scoped_refptr<Core> core_;
86 core_ = new Core(main_task_runner, ui_task_runner);
110 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 57 // The actual implementation resides in InputInjectorLinux::Core class.
58 class Core : public base::RefCountedThreadSafe<Core> {
60 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
77 friend class base::RefCountedThreadSafe<Core>;
78 virtual ~Core();
123 DISALLOW_COPY_AND_ASSIGN(Core);
126 scoped_refptr<Core> core_;
133 core_ = new Core(task_runner);
160 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/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...]
  /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/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_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_xps_win.cc 105 JobSpoolerWin() : core_(new Core) {}
129 // We use a Core class because we want a separate RefCountedThreadSafe
131 class Core : public ServiceUtilityProcessHost::Client,
134 Core()
141 ~Core() {}
319 base::Bind(&JobSpoolerWin::Core::RenderPDFPagesInSandbox, this,
411 DISALLOW_COPY_AND_ASSIGN(Core);
413 scoped_refptr<Core> core_;
  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.cc 30 // Maximum CPU time percentage of a single core that can be consumed for desktop
48 class DesktopCaptureDevice::Core
49 : public base::RefCountedThreadSafe<Core>,
52 Core(scoped_refptr<base::SequencedTaskRunner> task_runner,
61 friend class base::RefCountedThreadSafe<Core>;
62 virtual ~Core();
124 DISALLOW_COPY_AND_ASSIGN(Core);
127 DesktopCaptureDevice::Core::Core(
135 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...]
  /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/host/win/
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/dns/
mdns_client_impl.h 102 // The core object exists while the MDnsClient is listening, and is deleted
105 // invalidate the core.
106 class Core : public base::SupportsWeakPtr<Core>, MDnsConnection::Delegate {
108 explicit Core(MDnsClientImpl* client);
109 virtual ~Core();
111 // Initialize the core. Returns true on success.
164 DISALLOW_COPY_AND_ASSIGN(Core);
186 Core* core() { return core_.get(); function in class:net::MDnsClientImpl
    [all...]
mdns_client_impl.cc 166 MDnsClientImpl::Core::Core(MDnsClientImpl* client)
170 MDnsClientImpl::Core::~Core() {
174 bool MDnsClientImpl::Core::Init(MDnsSocketFactory* socket_factory) {
178 bool MDnsClientImpl::Core::SendQuery(uint16 rrtype, std::string name) {
189 void MDnsClientImpl::Core::HandlePacket(DnsResponse* response,
277 void MDnsClientImpl::Core::NotifyNsecRecord(const RecordParsed* record) {
309 void MDnsClientImpl::Core::OnConnectionError(int error) {
313 void MDnsClientImpl::Core::AlertListeners
    [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...]

Completed in 2619 milliseconds

12 3