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

1 2 3 4 5 6 7 8 910

  /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/
entrypoints.h 11 class Core;
15 // Sets the instance of Core to be used by system functions.
16 void SetCore(Core* core);
17 // Gets the instance of Core to be used by system functions.
18 Core* GetCore();
mapping_table.h 21 class Core;
27 bool ShutdownCheckNoLeaks(Core*);
30 // This class provides the (global) table of memory mappings (owned by |Core|),
33 // This class is NOT thread-safe; locking is left to |Core|.
45 friend bool internal::ShutdownCheckNoLeaks(Core*);
  /external/chromium_org/win8/metro_driver/
metro_driver.h 11 : public mswr::RuntimeClass<winapp::Core::IFrameworkViewSource> {
13 ChromeAppViewFactory(winapp::Core::ICoreApplication* icore_app);
14 IFACEMETHOD(CreateView)(winapp::Core::IFrameworkView** view);
  /external/clang/lib/Rewrite/
Makefile 12 PARALLEL_DIRS := Core
  /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...]
network_delegate_error_observer.h 34 class Core;
36 scoped_refptr<Core> 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);
core.cc 5 #include "ppapi/cpp/core.h"
13 void Core::CallOnMainThread(int32_t delay_in_milliseconds,
21 bool Core::IsMainThread() {
  /external/clang/lib/StaticAnalyzer/
Makefile 16 PARALLEL_DIRS := Core
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
shared_desktop_frame.h 38 class Core;
40 SharedDesktopFrame(scoped_refptr<Core> core);
42 scoped_refptr<Core> core_;
  /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/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...]
host_window_proxy.h 35 // All thread switching logic is implemented in the ref-counted |Core| class.
36 class Core;
37 scoped_refptr<Core> core_;
  /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/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/mojo/bindings/js/
core.h 13 class Core {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
llvm_wrapper.h 4 #include <llvm-c/Core.h>
  /external/mesa3d/src/gallium/drivers/r600/
llvm_wrapper.h 4 #include <llvm-c/Core.h>
  /external/chromium_org/mojo/public/java/src/org/chromium/mojo/system/
Handle.java 26 * @see Core#wait(Handle, Core.WaitFlags, long)
28 public int wait(Core.WaitFlags flags, long deadline);
42 * Returns the {@link Core} implementation for this handle. Can be null if this handle is
45 public Core getCore();
  /external/chromium_org/remoting/client/plugin/
pepper_plugin_thread_delegate.h 11 class Core;
25 pp::Core* core_;
  /external/chromium_org/sync/api/attachments/
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/deqp/framework/platform/win32/
tcuWGL.hpp 4 * drawElements Quality Program Tester Core
152 * \brief Core WGL API
154 * \note Created API objects depend on Core object being live. User is
155 * resposible of keeping Core live as long as there are API objects
158 class Core
161 Core (HINSTANCE instance);
162 ~Core (void);
171 Core (const Core& other);
172 Core& operator= (const Core& other)
    [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...]

Completed in 735 milliseconds

1 2 3 4 5 6 7 8 910