Searched refs:Core (Results 101 - 125 of 243) sorted by relevance

12345678910

/external/chromium_org/mojo/system/
H A Dcore_test_base.h17 class Core;
37 Core* core() { return core_; }
40 Core* core_;
H A Dhandle_table.h20 class Core;
29 bool ShutdownCheckNoLeaks(Core*);
32 // This class provides the (global) handle table (owned by |Core|), which maps
36 // This class is NOT thread-safe; locking is left to |Core| (since it may need
49 // use the result outside |Core|'s lock, you MUST take a reference (e.g., by
102 friend bool internal::ShutdownCheckNoLeaks(Core*);
105 // |Core::WriteMessage()|) that want to hold on to a dispatcher and later
109 // For example, if |Core::WriteMessage()| is called with a handle to be sent,
117 // If |Core::Close()| is simultaneously called on that handle, it too checks
119 // This prevents |Core
[all...]
H A Dcore.cc32 // Mojo primitives are implemented by the singleton |Core| object. Most calls
33 // are for a "primary" handle (the first argument). |Core::GetDispatcher()| is
36 // attached to objects and are implemented by |Core| itself.
79 Core::Core(scoped_ptr<embedder::PlatformSupport> platform_support) function in class:mojo::system::Core
83 Core::~Core() {
86 MojoHandle Core::AddDispatcher(const scoped_refptr<Dispatcher>& dispatcher) {
91 scoped_refptr<Dispatcher> Core::GetDispatcher(MojoHandle handle) {
99 MojoTimeTicks Core
[all...]
/external/chromium_org/sync/internal_api/attachments/
H A Dattachment_service_proxy_for_test.cc16 : Core(weak_ptr_factory->GetWeakPtr()),
38 scoped_refptr<Core> core_for_test(
58 const scoped_refptr<Core>& core)
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device.cc51 class DesktopCaptureDevice::Core : public webrtc::DesktopCapturer::Callback { class in class:content::DesktopCaptureDevice
53 Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
56 virtual ~Core();
114 base::OneShotTimer<Core> capture_timer_;
132 DISALLOW_COPY_AND_ASSIGN(Core);
135 DesktopCaptureDevice::Core::Core( function in class:content::DesktopCaptureDevice::Core
146 DesktopCaptureDevice::Core::~Core() {
154 void DesktopCaptureDevice::Core
[all...]
/external/chromium_org/net/socket/
H A Dssl_client_socket_nss.cc160 // Used by SSLClientSocketNSS::Core to indicate there is no read result
274 // SSLClientSocketNSS::Core.
283 // SSLClientSocketNSS::Core.
293 // from within the SSLClientSocketNSS::Core.
295 // Core is backed by an IOBuffer. If the "const char*" is bound via
475 // SSLClientSocketNSS::Core provides a thread-safe, ref-counted core that is
485 // Threading within SSLClientSocketNSS and SSLClientSocketNSS::Core:
488 // such as signing, creating certificates, or locating private keys, the Core
520 // SSLClientSocketNSS Core (Transport Socket)
543 // SSLClientSocketNSS Core Socke
569 class SSLClientSocketNSS::Core : public base::RefCountedThreadSafe<Core> { class in class:net::SSLClientSocketNSS
911 SSLClientSocketNSS::Core::Core( function in class:net::SSLClientSocketNSS::Core
[all...]
/external/chromium_org/win8/metro_driver/
H A Dchrome_app_view_ash.cc37 winapp::Core::CoreApplicationView*,
41 winui::Core::CoreWindow*,
42 winui::Core::PointerEventArgs*> PointerEventHandler;
45 winui::Core::CoreWindow*,
46 winui::Core::KeyEventArgs*> KeyEventHandler;
49 winui::Core::CoreDispatcher*,
50 winui::Core::AcceleratorKeyEventArgs*> AcceleratorKeyEventHandler;
53 winui::Core::CoreWindow*,
54 winui::Core::CharacterReceivedEventArgs*> CharEventHandler;
57 winui::Core
[all...]
H A Dmetro_driver.cc66 mswr::ComPtr<winapp::Core::ICoreApplication> InitWindows8() {
71 mswr::ComPtr<winapp::Core::ICoreApplication> core_app;
80 mswr::ComPtr<winapp::Core::ICoreApplication> InitWindows7();
105 mswr::ComPtr<winapp::Core::ICoreApplication> core_app;
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DExecutorFactory.java9 import org.chromium.mojo.system.Core;
67 public PipedExecutor(Core core) {
84 mWaiter.asyncWait(mReadHandle, Core.HandleSignals.READABLE, Core.DEADLINE_INFINITE,
176 public static Executor getExecutorForCurrentThread(Core core) {
H A DInterfaceWithClient.java7 import org.chromium.mojo.system.Core;
35 * @param core the Core implementation used to create pipes and access the async waiter.
38 public AbstractProxy(Core core, MessageReceiverWithResponder messageReceiver) {
99 public final Pair<P, InterfaceRequest<I>> getInterfaceRequest(Core core, CI client) {
/external/chromium_org/remoting/host/setup/
H A Dservice_client.cc19 class ServiceClient::Core class in class:remoting::ServiceClient
20 : public base::RefCountedThreadSafe<ServiceClient::Core>,
23 Core(const std::string& chromoting_hosts_url, function in class:remoting::ServiceClient::Core
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
[all...]
/external/chromium_org/chrome/browser/
H A Dpepper_flash_settings_manager.h106 // Core does most of the work. It is ref-counted so that its lifespan can be
112 class Core;
119 void OnError(Core* core);
127 scoped_refptr<Core> core_;
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_ui_proxy.h68 class Core;
69 friend class Core;
81 scoped_ptr<Core, content::BrowserThread::DeleteOnUIThread> core_;
/external/chromium_org/google_apis/gaia/
H A Dgaia_oauth_client.cc33 class GaiaOAuthClient::Core class in class:gaia::GaiaOAuthClient
34 : public base::RefCountedThreadSafe<GaiaOAuthClient::Core>,
37 Core(net::URLRequestContextGetter* request_context_getter) function in class:gaia::GaiaOAuthClient::Core
70 friend class base::RefCountedThreadSafe<Core>;
82 virtual ~Core() {}
102 void GaiaOAuthClient::Core::GetTokensFromAuthCode(
122 void GaiaOAuthClient::Core::RefreshToken(
147 void GaiaOAuthClient::Core::GetUserEmail(const std::string& oauth_access_token,
153 void GaiaOAuthClient::Core::GetUserId(const std::string& oauth_access_token,
159 void GaiaOAuthClient::Core
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld.h49 #include <llvm-c/Core.h>
/external/eigen/bench/
H A DbenchmarkX.cpp5 #include <Eigen/Core>
H A DbenchmarkXcwise.cpp4 #include <Eigen/Core>
/external/eigen/doc/examples/
H A DTutorial_simple_example_dynamic_size.cpp1 #include <Eigen/Core>
H A Dclass_Block.cpp1 #include <Eigen/Core>
H A Dclass_CwiseUnaryOp.cpp1 #include <Eigen/Core>
H A Dclass_FixedBlock.cpp1 #include <Eigen/Core>
H A Dclass_FixedVectorBlock.cpp1 #include <Eigen/Core>
H A Dclass_VectorBlock.cpp1 #include <Eigen/Core>
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld.h49 #include <llvm-c/Core.h>
/external/chromium_org/jingle/glue/
H A Dpseudotcp_adapter.h81 class Core;
83 scoped_refptr<Core> core_;

Completed in 531 milliseconds

12345678910