HomeSort by relevance Sort by last modified time
    Searched full:dispatcher (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/webkit/WebKitTools/pywebsocket/test/
test_dispatch.py 111 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None)
112 warnings = dispatcher.source_warnings()
132 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None)
136 dispatcher.do_extra_handshake(request) # Must not raise exception.
139 self.assertRaises(Exception, dispatcher.do_extra_handshake, request)
142 dispatcher = dispatch.Dispatcher(_TEST_HANDLERS_DIR, None)
147 dispatcher.transfer_data(request
    [all...]
  /external/chromium/base/
message_pump_glib.h 37 // Dispatcher is used during a nested invocation of Run to dispatch events.
38 // If Run is invoked with a non-NULL Dispatcher, MessageLoop does not
40 // passed to Dispatcher's Dispatch method for dispatch. It is up to the
41 // Dispatcher to dispatch, or not, the event.
45 class Dispatcher {
47 virtual ~Dispatcher() {}
56 // Like MessagePump::Run, but GdkEvent objects are routed through dispatcher.
57 virtual void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
86 Dispatcher* dispatcher member in struct:base::MessagePumpForUI::RunState
    [all...]
message_pump_win.h 43 // Dispatcher is used during a nested invocation of Run to dispatch events.
44 // If Run is invoked with a non-NULL Dispatcher, MessageLoop does not
46 // passed to Dispatcher's Dispatch method for dispatch. It is up to the
47 // Dispatcher to dispatch, or not, the event.
51 class Dispatcher {
53 virtual ~Dispatcher() {}
74 // Like MessagePump::Run, but MSG objects are routed through dispatcher.
75 void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
84 Dispatcher* dispatcher member in struct:base::MessagePumpWin::RunState
    [all...]
message_pump_glib.cc 160 Dispatcher* dispatcher) {
172 state.dispatcher = dispatcher;
325 message_pump->state_->dispatcher) {
326 if (!message_pump->state_->dispatcher->Dispatch(event))
message_loop.h 19 // We need this to declare base::MessagePumpWin::Dispatcher, which we should
255 typedef base::MessagePumpWin::Dispatcher Dispatcher;
258 typedef base::MessagePumpForUI::Dispatcher Dispatcher;
273 Dispatcher* dispatcher; member in struct:MessageLoop::RunState
465 void Run(Dispatcher* dispatcher);
  /frameworks/base/libs/ui/
InputManager.cpp 28 const sp<InputDispatcherInterface>& dispatcher) :
30 mDispatcher(dispatcher) {
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
headerparserhandler.py 62 dispatcher = dispatch.Dispatcher(_HANDLER_ROOT, _HANDLER_SCAN)
63 for warning in dispatcher.source_warnings():
65 return dispatcher
standalone.py 100 def _print_warnings_if_any(dispatcher):
101 warnings = dispatcher.source_warnings()
221 self._dispatcher = WebSocketRequestHandler.options.dispatcher
296 def _alias_handlers(dispatcher, websock_handlers_map_file):
297 """Set aliases specified in websock_handler_map_file in dispatcher.
300 dispatcher: dispatch.Dispatcher instance
313 dispatcher.add_resource_path_alias(
398 # Share a Dispatcher among request handlers to save time for
399 # instantiation. Dispatcher can be shared because it is thread-safe
    [all...]
handshake.py 101 def __init__(self, request, dispatcher, strict=False):
106 dispatcher: Dispatcher (dispatch.Dispatcher).
116 self._dispatcher = dispatcher
  /frameworks/base/services/java/com/android/server/
InputApplication.java 20 * Describes input-related application properties for use by the input dispatcher.
InputWindow.java 22 * Describes input-related window properties for use by the input dispatcher.
  /frameworks/base/include/ui/
InputManager.h 78 /* Gets the input dispatcher. */
95 const sp<InputDispatcherInterface>& dispatcher);
InputDispatcher.h 67 /* Waits for previous events to be dispatched so that the input dispatcher can determine
246 * Input dispatcher policy interface.
327 * The dispatcher is expected to be mostly asynchronous. */
334 /* Dumps the state of the input dispatcher.
342 * This method should only be called on the input dispatcher thread.
346 /* Notifies the dispatcher about new events.
399 /* Dispatches events to input targets. Some functions of the input dispatcher, such as
403 * Because the policy can potentially block or cause re-entrance into the input dispatcher,
404 * the input dispatcher never calls into the policy while holding its internal locks.
553 // Pointer to a motion sample to dispatch in the next cycle if the dispatcher wa
    [all...]
  /dalvik/vm/compiler/codegen/arm/
README.txt 26 /* MIR2LIR dispatcher and architectural independent codegen routines */
  /dalvik/vm/compiler/codegen/arm/armv5te/
Codegen.c 47 /* MIR2LIR dispatcher and architectural independent codegen routines */
  /dalvik/vm/compiler/codegen/arm/armv5te-vfp/
Codegen.c 47 /* MIR2LIR dispatcher and architectural independent codegen routines */
  /dalvik/vm/compiler/codegen/arm/armv7-a/
Codegen.c 47 /* MIR2LIR dispatcher and architectural independent codegen routines */
  /dalvik/vm/compiler/codegen/arm/armv7-a-neon/
Codegen.c 47 /* MIR2LIR dispatcher and architectural independent codegen routines */
  /external/dbus/bus/
dispatch.h 2 /* dispatch.h Message dispatcher
  /frameworks/base/core/jni/
android_view_InputChannel.h 33 * This is used to automatically dispose of other native objects in the input dispatcher
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
checker_unittest.py 369 dispatcher = ProcessorDispatcher()
372 self.assertFalse(dispatcher.should_skip_with_warning("foo.txt"))
387 self.assertTrue(dispatcher.should_skip_with_warning(path),
392 dispatcher = ProcessorDispatcher()
395 self.assertFalse(dispatcher.should_skip_without_warning("foo.txt"))
404 self.assertTrue(dispatcher.should_skip_without_warning(path),
417 dispatcher = ProcessorDispatcher()
418 processor = dispatcher.dispatch_processor(file_path,
631 dispatcher = ProcessorDispatcher()
633 self.assertTrue(dispatcher.should_skip_without_warning(file_path)
    [all...]
  /external/bluetooth/glib/gobject/
gobjectnotifyqueue.c 42 GObjectNotifyQueueDispatcher dispatcher; member in struct:_GObjectNotifyContext
125 context->dispatcher (object, n_pspecs, pspecs);
  /frameworks/base/core/java/android/ddm/
DdmRegister.java 42 * The chunk dispatcher will pause until we call registrationComplete(),
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
CmdInterpretWext.h 57 TI_HANDLE hCmdDispatch; /* Handle to the Command-Dispatcher */
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
CmdInterpretWext.h 57 TI_HANDLE hCmdDispatch; /* Handle to the Command-Dispatcher */

Completed in 463 milliseconds

1 2 3 4 5 6 7