Searched refs:Dispatcher (Results 1 - 25 of 191) sorted by relevance

12345678

/external/chromium_org/ppapi/proxy/
H A Dinterface_proxy.h19 class Dispatcher;
25 typedef InterfaceProxy* (*Factory)(Dispatcher* dispatcher);
29 Dispatcher* dispatcher() const { return dispatcher_; }
40 InterfaceProxy(Dispatcher* dispatcher);
43 Dispatcher* dispatcher_;
H A Ddispatcher.cc24 Dispatcher::Dispatcher(PP_GetInterface_Func local_get_interface, function in class:ppapi::proxy::Dispatcher
30 Dispatcher::~Dispatcher() {
33 InterfaceProxy* Dispatcher::GetInterfaceProxy(ApiID id) {
50 void Dispatcher::AddIOThreadMessageFilter(
58 bool Dispatcher::OnMessageReceived(const IPC::Message& msg) {
73 void Dispatcher::SetSerializationRules(
78 void Dispatcher::OnInvalidMessageReceived() {
H A Ddispatcher.h49 class PPAPI_PROXY_EXPORT Dispatcher : public ProxyChannel { class in namespace:ppapi::proxy
51 virtual ~Dispatcher();
79 explicit Dispatcher(PP_GetInterface_Func local_get_interface,
102 DISALLOW_COPY_AND_ASSIGN(Dispatcher);
H A Dinterface_proxy.cc13 InterfaceProxy::InterfaceProxy(Dispatcher* dispatcher)
H A Dserialized_var.h32 class Dispatcher;
172 // called Deserialize with a valid Dispatcher yet, which is how we can
223 SerializedVarSendInput(Dispatcher* dispatcher, const PP_Var& var);
226 static void ConvertVector(Dispatcher* dispatcher,
240 SerializedVarSendInputShmem(Dispatcher* dispatcher, const PP_Var& var,
282 PP_Var Return(Dispatcher* dispatcher);
299 ReceiveSerializedException(Dispatcher* dispatcher, PP_Var* exception);
328 ReceiveSerializedVarVectorOutParam(Dispatcher* dispatcher,
336 Dispatcher* dispatcher_;
365 PP_Var Get(Dispatcher* dispatche
[all...]
H A Dppp_graphics_3d_proxy.h18 PPP_Graphics3D_Proxy(Dispatcher* dispatcher);
H A Dppp_mouse_lock_proxy.h18 PPP_MouseLock_Proxy(Dispatcher* dispatcher);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DDispatcher.java23 public interface Dispatcher extends Callback { interface in inherits:Callback
/external/chromium_org/extensions/renderer/
H A Dapi_definitions_natives.h12 class Dispatcher;
18 ApiDefinitionsNatives(Dispatcher* dispatcher, ScriptContext* context);
26 Dispatcher* dispatcher_;
H A Dapp_window_custom_bindings.h11 class Dispatcher;
16 AppWindowCustomBindings(Dispatcher* dispatcher, ScriptContext* context);
26 // Dispatcher handle. Not owned.
27 Dispatcher* dispatcher_;
H A Dv8_context_native_handler.h12 class Dispatcher;
16 V8ContextNativeHandler(ScriptContext* context, Dispatcher* dispatcher);
26 Dispatcher* dispatcher_;
H A Devent_bindings.h16 class Dispatcher;
24 EventBindings(Dispatcher* dispatcher, ScriptContext* context);
54 Dispatcher* dispatcher_;
H A Ddispatcher_delegate.h20 class Dispatcher;
48 virtual void RegisterNativeHandlers(Dispatcher* dispatcher,
60 // the Dispatcher.
73 const extensions::Dispatcher* dispatcher,
81 const extensions::Dispatcher* dispatcher,
/external/chromium_org/mojo/system/
H A Dhandle_table.h21 class Dispatcher;
24 typedef std::vector<scoped_refptr<Dispatcher>> DispatcherVector;
33 // (valid) |MojoHandle|s to |Dispatcher|s. This is abstracted so that, e.g.,
51 Dispatcher* GetDispatcher(MojoHandle handle);
59 scoped_refptr<Dispatcher>* dispatcher);
63 MojoHandle AddDispatcher(const scoped_refptr<Dispatcher>& dispatcher);
70 const scoped_refptr<Dispatcher>& dispatcher0,
71 const scoped_refptr<Dispatcher>& dispatcher1);
123 explicit Entry(const scoped_refptr<Dispatcher>& dispatcher);
126 scoped_refptr<Dispatcher> dispatche
[all...]
H A Ddispatcher.cc19 DispatcherTransport DispatcherTryStartTransport(Dispatcher* dispatcher) {
20 return Dispatcher::HandleTableAccess::TryStartTransport(dispatcher);
25 // Dispatcher ------------------------------------------------------------------
28 DispatcherTransport Dispatcher::HandleTableAccess::TryStartTransport(
29 Dispatcher* dispatcher) {
44 void Dispatcher::TransportDataAccess::StartSerialize(
45 Dispatcher* dispatcher,
54 bool Dispatcher::TransportDataAccess::EndSerializeAndClose(
55 Dispatcher* dispatcher,
66 scoped_refptr<Dispatcher> Dispatche
247 Dispatcher::Dispatcher() : is_closed_(false) { function in class:mojo::system::Dispatcher
[all...]
H A Ddispatcher.h37 class Dispatcher;
45 typedef std::vector<scoped_refptr<Dispatcher>> DispatcherVector;
51 DispatcherTryStartTransport(Dispatcher* dispatcher);
55 // A |Dispatcher| implements Mojo primitives that are "attached" to a particular
60 class MOJO_SYSTEM_IMPL_EXPORT Dispatcher class in namespace:mojo::system
61 : public base::RefCountedThreadSafe<Dispatcher> {
119 scoped_refptr<Dispatcher>* new_dispatcher);
162 // |Dispatcher| methods must not be called until |DispatcherTransport::End()|
169 friend DispatcherTransport test::DispatcherTryStartTransport(Dispatcher*);
174 static DispatcherTransport TryStartTransport(Dispatcher* dispatche
[all...]
/external/chromium_org/chrome/renderer/extensions/
H A Drenderer_permissions_policy_delegate.h12 class Dispatcher;
18 explicit RendererPermissionsPolicyDelegate(Dispatcher* dispatcher);
29 Dispatcher* dispatcher_;
H A Dextension_frame_helper.h14 class Dispatcher;
22 Dispatcher* extension_dispatcher);
35 Dispatcher* extension_dispatcher_;
H A Dapp_bindings.h20 class Dispatcher;
28 AppBindings(Dispatcher* dispatcher, ScriptContext* context);
44 // Dispatcher handle. Not owned.
45 Dispatcher* dispatcher_;
/external/chromium_org/sandbox/win/src/
H A Dcrosscall_server.h37 // IPC fired --callback ------>| |--(3)---> Dispatcher
172 // 2) When the IPC finally obtains a valid Dispatcher the IPC
175 class Dispatcher { class in namespace:sandbox
178 typedef bool (Dispatcher::*CallbackGeneric)();
179 typedef bool (Dispatcher::*Callback0)(IPCInfo* ipc);
180 typedef bool (Dispatcher::*Callback1)(IPCInfo* ipc, void* p1);
181 typedef bool (Dispatcher::*Callback2)(IPCInfo* ipc, void* p1, void* p2);
182 typedef bool (Dispatcher::*Callback3)(IPCInfo* ipc, void* p1, void* p2,
184 typedef bool (Dispatcher::*Callback4)(IPCInfo* ipc, void* p1, void* p2,
186 typedef bool (Dispatcher
[all...]
H A Dsharedmem_ipc_server.cc26 Dispatcher* dispatcher)
244 Dispatcher* dispatcher = service_context->dispatcher;
247 Dispatcher* handler = NULL;
249 Dispatcher::CallbackGeneric callback_generic;
255 Dispatcher::Callback0 callback =
256 reinterpret_cast<Dispatcher::Callback0>(callback_generic);
263 Dispatcher::Callback1 callback =
264 reinterpret_cast<Dispatcher::Callback1>(callback_generic);
271 Dispatcher::Callback2 callback =
272 reinterpret_cast<Dispatcher
[all...]
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DDispatcher.java21 public abstract class Dispatcher { class
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DDispatcher.java19 public abstract class Dispatcher { class
/external/chromium_org/third_party/webrtc/base/
H A Dphysicalsocketserver.h27 // Event constants for the Dispatcher class.
41 class Dispatcher { class in namespace:rtc
43 virtual ~Dispatcher() {}
77 void Add(Dispatcher* dispatcher);
78 void Remove(Dispatcher* dispatcher);
96 Dispatcher* signal_dispatcher();
100 typedef std::vector<Dispatcher*> DispatcherList;
/external/chromium_org/extensions/renderer/guest_view/
H A Dguest_view_internal_custom_bindings.h11 class Dispatcher;

Completed in 387 milliseconds

12345678