HomeSort by relevance Sort by last modified time
    Searched defs:dispatcher (Results 51 - 75 of 139) sorted by null

1 23 4 5 6

  /external/chromium/chrome/browser/extensions/
extension_function.h 77 ExtensionFunctionDispatcher* dispatcher() const { function in class:ExtensionFunction
130 // The peer to the dispatcher that will service this extension function call.
166 // Note that once Run() returns, dispatcher() can be NULL, so be sure to
  /external/chromium_org/ash/autoclick/
autoclick_controller.cc 188 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
189 dispatcher->ConvertPointToHost(&click_location);
200 dispatcher->AsRootWindowHostDelegate()->OnHostMouseEvent(&press_event);
201 dispatcher->AsRootWindowHostDelegate()->OnHostMouseEvent(&release_event);
  /external/chromium_org/base/message_loop/
message_pump_glib.cc 124 MessagePumpDispatcher* dispatcher; member in struct:base::MessagePumpGlib::RunState
171 MessagePumpDispatcher* dispatcher) {
183 state.dispatcher = dispatcher;
323 return state_ ? state_->dispatcher : NULL;
message_pump_win.h 44 // Like MessagePump::Run, but MSG objects are routed through dispatcher.
45 void RunWithDispatcher(Delegate* delegate, MessagePumpDispatcher* dispatcher);
54 MessagePumpDispatcher* dispatcher; member in struct:base::MessagePumpWin::RunState
message_pump_x11.cc 166 MessagePumpDispatcher* dispatcher,
168 dispatchers_.insert(std::make_pair(xid, dispatcher));
176 MessagePumpDispatcher* dispatcher) {
177 root_window_dispatchers_.AddObserver(dispatcher);
181 MessagePumpDispatcher* dispatcher) {
182 root_window_dispatchers_.RemoveObserver(dispatcher);
196 MessagePumpDispatcher* dispatcher = local
204 if (dispatcher && ProcessXEvent(dispatcher, &xev))
216 MessagePumpDispatcher* dispatcher local
309 MessagePumpDispatcher* dispatcher = GetDispatcherForXEvent(xev); local
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_flash_drm_host.cc 84 aura::WindowEventDispatcher* dispatcher = native_view->GetDispatcher(); local
85 if (!dispatcher)
87 HWND window = dispatcher->host()->GetAcceleratedWidget();
  /external/chromium_org/content/child/
websocket_bridge.cc 198 WebSocketDispatcher* dispatcher = local
200 channel_id_ = dispatcher->AddBridge(this);
276 WebSocketDispatcher* dispatcher =
278 dispatcher->RemoveBridge(channel_id_);
  /external/chromium_org/mojo/system/
core_impl.cc 14 #include "mojo/system/dispatcher.h"
28 // |CoreImpl::GetDispatcher()| is used to look up a |Dispatcher| object for a
34 // (which have two). In such a case, there is still a |Dispatcher| (e.g.,
37 // secondary object does NOT have any references to the |Dispatcher|s (even if
42 // |Dispatcher|s for the handles that it wants to wait on with a |Waiter|
45 // The |Dispatcher| then adds the |Waiter| to a |WaiterList| that's either owned
46 // by that |Dispatcher| (see |SimpleDispatcher|) or by a secondary object (e.g.,
55 // switch it to a reader-writer lock). Each |Dispatcher| object then has a lock
60 // 2. |Dispatcher| locks
66 // - While holding a |Dispatcher| lock, you may not unconditionally attemp
527 scoped_refptr<Dispatcher> dispatcher = GetDispatcher(handles[i]); local
    [all...]
  /external/chromium_org/ppapi/proxy/
plugin_globals.cc 108 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance); local
109 if (dispatcher)
110 return dispatcher->GetInstanceAPI();
116 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance); local
117 if (dispatcher)
118 return dispatcher->GetResourceCreationAPI();
149 // the same as "send to everybody" which is what the dispatcher implements
plugin_main_nacl.cc 226 PluginDispatcher* dispatcher = local
231 if (!dispatcher->InitPluginWithChannel(this, base::kNullProcessId,
233 delete dispatcher;
236 // From here, the dispatcher will manage its own lifetime according to the
242 // The first parameter should be a plugin dispatcher ID.
249 std::map<uint32, ppapi::proxy::PluginDispatcher*>::iterator dispatcher = local
251 if (dispatcher != plugin_dispatchers_.end())
252 dispatcher->second->OnMessageReceived(msg);
ppb_audio_proxy.cc 128 PPB_Audio_Proxy::PPB_Audio_Proxy(Dispatcher* dispatcher)
129 : InterfaceProxy(dispatcher),
142 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id); local
143 if (!dispatcher)
154 dispatcher->Send(new PpapiHostMsg_PPBAudio_Create(
228 dispatcher()->local_get_interface()(PPB_CORE_INTERFACE));
265 dispatcher()->Send(new PpapiMsg_PPBAudio_NotifyAudioStreamCreated(
286 *foreign_socket_handle = dispatcher()->ShareHandleWithRemote(
299 *foreign_shared_memory_handle = dispatcher()->ShareHandleWithRemote
    [all...]
ppb_message_loop_proxy.cc 206 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance); local
207 if (!dispatcher)
265 PPB_MessageLoop_Proxy::PPB_MessageLoop_Proxy(Dispatcher* dispatcher)
266 : InterfaceProxy(dispatcher) {
ppb_testing_proxy.cc 69 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id); local
70 if (!dispatcher)
74 dispatcher->Send(new PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance(
85 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id); local
86 if (!dispatcher)
93 dispatcher->Send(new PpapiHostMsg_PPBTesting_SimulateInputEvent(
122 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance); local
123 if (!dispatcher)
125 dispatcher->Send(
144 PPB_Testing_Proxy::PPB_Testing_Proxy(Dispatcher* dispatcher
    [all...]
ppb_video_decoder_proxy.cc 151 PPB_VideoDecoder_Proxy::PPB_VideoDecoder_Proxy(Dispatcher* dispatcher)
152 : InterfaceProxy(dispatcher),
160 if (!dispatcher()->permissions().HasPermission(PERMISSION_DEV))
189 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance); local
190 // Dispatcher is null if it cannot find the instance passed to it (i.e. if the
192 if (!dispatcher)
203 dispatcher->Send(new PpapiHostMsg_PPBVideoDecoder_Create(
282 dispatcher()->Send(new PpapiMsg_PPBVideoDecoder_EndOfBitstreamACK(
288 dispatcher()->Send(new PpapiMsg_PPBVideoDecoder_FlushACK
    [all...]
  /external/chromium_org/sandbox/win/src/
sharedmem_ipc_server.cc 21 Dispatcher* dispatcher)
27 call_dispatcher_(dispatcher) {
101 service_context->dispatcher = call_dispatcher_;
234 Dispatcher* dispatcher = service_context->dispatcher; local
235 DCHECK(dispatcher);
237 Dispatcher* handler = NULL;
239 Dispatcher::CallbackGeneric callback_generic
    [all...]
  /external/chromium_org/ui/snapshot/
snapshot_aura_unittest.cc 84 aura::WindowEventDispatcher* dispatcher() { return helper_->dispatcher(); } function in class:ui::SnapshotAuraTest
88 dispatcher()->compositor()->ScheduleDraw();
89 ui::DrawWaiterForTest::Wait(dispatcher()->compositor());
  /external/chromium_org/ui/views/test/
ui_controls_factory_desktop_aurax11.cc 128 aura::WindowEventDispatcher* dispatcher = window->GetDispatcher(); variable
133 SetKeycodeAndSendThenMask(dispatcher, &xevent, XK_Control_L,
137 SetKeycodeAndSendThenMask(dispatcher, &xevent, XK_Shift_L, ShiftMask);
139 SetKeycodeAndSendThenMask(dispatcher, &xevent, XK_Alt_L, Mod1Mask);
143 dispatcher->host()->PostNativeEvent(&xevent);
147 dispatcher->host()->PostNativeEvent(&xevent);
149 UnmaskAndSetKeycodeThenSend(dispatcher, &xevent, Mod1Mask, XK_Alt_L);
151 UnmaskAndSetKeycodeThenSend(dispatcher, &xevent, ShiftMask, XK_Shift_L);
153 UnmaskAndSetKeycodeThenSend(dispatcher, &xevent, ControlMask,
  /external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp 140 btCollisionDispatcher* dispatcher; local
142 // use the default collision dispatcher. For parallel processing you can use a diffent dispatcher (see Extras/BulletMultiThreaded)
145 dispatcher = new SpuGatheringCollisionDispatcher(dispatchThreads, 4, collisionConfiguration);
146 dispatcher->setDispatcherFlags(btCollisionDispatcher::CD_DISABLE_CONTACTPOOL_DYNAMIC_ALLOCATION);
148 dispatcher = new btCollisionDispatcher(collisionConfiguration);
160 btDiscreteDynamicsWorld* world = new btDiscreteDynamicsWorld(dispatcher, broadphase, solver, collisionConfiguration);
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 40 final Dispatcher dispatcher = new Dispatcher() { local
48 mockWebServer.setDispatcher(dispatcher);
52 // Make sure our dispatcher got the request.
63 final Dispatcher dispatcher = new Dispatcher() { local
72 mockWebServer.setDispatcher(dispatcher);
  /external/chromium/base/
message_pump_glib.cc 129 Dispatcher* dispatcher; member in struct:base::MessagePumpForUI::RunState
176 Dispatcher* dispatcher) {
188 state.dispatcher = dispatcher;
308 if (state_ && state_->dispatcher) { // state_ may be null during tests.
309 if (!state_->dispatcher->Dispatch(event))
346 MessagePumpForUI::Dispatcher* MessagePumpForUI::GetDispatcher() {
347 return state_ ? state_->dispatcher : NULL
    [all...]
message_pump_win.h 45 // Dispatcher is used during a nested invocation of Run to dispatch events.
46 // If Run is invoked with a non-NULL Dispatcher, MessageLoop does not
48 // passed to Dispatcher's Dispatch method for dispatch. It is up to the
49 // Dispatcher to dispatch, or not, the event.
53 class Dispatcher {
55 virtual ~Dispatcher() {}
76 // Like MessagePump::Run, but MSG objects are routed through dispatcher.
77 void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
86 Dispatcher* dispatcher member in struct:base::MessagePumpWin::RunState
    [all...]
  /external/chromium_org/ash/display/
display_manager_unittest.cc 385 aura::WindowEventDispatcher* dispatcher = local
387 EXPECT_EQ(1, dispatcher->compositor()->device_scale_factor());
391 EXPECT_EQ(2, dispatcher->compositor()->device_scale_factor());
    [all...]
  /external/chromium_org/ash/
root_window_controller.h 110 aura::Window* root_window() { return dispatcher()->window(); }
111 aura::WindowEventDispatcher* dispatcher() { return root_window_.get(); } function in class:ash::internal::RootWindowController
  /external/chromium_org/ash/wm/caption_buttons/
frame_maximize_button_unittest.cc 555 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
561 dispatcher->AsRootWindowHostDelegate()->OnHostTouchEvent(&press);
569 dispatcher->AsRootWindowHostDelegate()->OnHostTouchEvent(&release);
    [all...]
  /external/chromium_org/ash/wm/
window_manager_unittest.cc 186 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
190 dispatcher->AsRootWindowHostDelegate()->OnHostKeyEvent(&keyev);
197 dispatcher->AsRootWindowHostDelegate()->OnHostTouchEvent(&touchev);
202 dispatcher->AsRootWindowHostDelegate()->OnHostKeyEvent(&keyev);
239 EXPECT_FALSE(dispatcher->AsRootWindowHostDelegate()->OnHostKeyEvent(&keyev));
253 EXPECT_FALSE(dispatcher->AsRootWindowHostDelegate()->OnHostKeyEvent(&keyev));
444 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
445 dispatcher->AsRootWindowHostDelegate()->OnHostTouchEvent(&touchev1);
462 dispatcher->AsRootWindowHostDelegate()->OnHostTouchEvent(&touchev2);
504 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher() local
610 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
657 aura::WindowEventDispatcher* dispatcher = root_window->GetDispatcher(); local
    [all...]

Completed in 573 milliseconds

1 23 4 5 6