Searched refs:dispatch (Results 1 - 25 of 201) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A D2007-01-06-KNR-Proto.c4 int svc_register (void (*dispatch) (int));
6 int svc_register (dispatch)
7 void (*dispatch) ();
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
H A Dglapi.c62 _glapi_set_dispatch(struct _glapi_table *dispatch) argument
64 u_current_set((const struct mapi_table *) dispatch);
/external/mesa3d/src/mapi/glapi/
H A Dglapi.c62 _glapi_set_dispatch(struct _glapi_table *dispatch) argument
64 u_current_set((const struct mapi_table *) dispatch);
/external/e2fsprogs/ext2ed/
H A Dext2_com.c38 sprintf (buffer,"setoffset %ld",file_system_info.super_block_offset);dispatch (buffer);
39 sprintf (buffer,"settype ext2_super_block");dispatch (buffer);
67 dispatch ("super");dispatch ("group");dispatch ("inode");dispatch ("next");dispatch ("dir");
69 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
94 sprintf (buffer,"setoffset %ld",file_system_info.first_group_desc_offset);dispatch (buffer);
95 sprintf (buffer,"settype ext2_group_desc");dispatch (buffe
[all...]
H A Dgroup_com.c34 dispatch (buffer);
50 dispatch (buffer);
73 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
74 strcpy (buffer,"show");dispatch (buffer);
102 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
103 strcpy (buffer,"show");dispatch (buffer);
141 sprintf (buffer,"setoffset block %ld",inode_offset);dispatch (buffer);
142 sprintf (buffer,"settype ext2_inode");dispatch (buffer);
155 sprintf (buffer,"setoffset block %ld",block_bitmap_offset);dispatch (buffer);
156 sprintf (buffer,"settype block_bitmap");dispatch (buffe
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_noop.h39 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_noop.h39 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DDispatcher.java26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dtts_engine_custom_bindings.js12 function(args, dispatch) {
19 dispatch([text, options, sendTtsEvent]);
H A Dfile_system_provider_custom_bindings.js112 function(args, dispatch) {
122 dispatch([options, onSuccessCallback, onErrorCallback]);
127 function(args, dispatch) {
139 dispatch([options, onSuccessCallback, onErrorCallback]);
144 function(args, dispatch) {
155 dispatch([options, onSuccessCallback, onErrorCallback]);
160 function(args, dispatch) {
170 dispatch([options, onSuccessCallback, onErrorCallback]);
175 function(args, dispatch) {
185 dispatch([option
[all...]
H A Dfile_browser_handler_custom_bindings.js16 function(args, dispatch) {
18 dispatch(args);
23 dispatch(args);
31 dispatch(args);
/external/compiler-rt/test/BlocksRuntime/
H A Drdar6414583.c12 #include <dispatch/dispatch.h>
H A Drdar6405500.c11 #import <dispatch/dispatch.h>
H A Ddispatch_async.c9 #include <dispatch/dispatch.h>
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_dispatch.py33 """Tests for dispatch module."""
41 from mod_pywebsocket import dispatch namespace
53 """A unittest for dispatch module."""
57 dispatch._normalize_path('/a/b'))
59 dispatch._normalize_path('\\a\\b'))
61 dispatch._normalize_path('/a/c/../b'))
63 dispatch._normalize_path('abc'))
66 converter = dispatch._create_path_to_resource_converter('/a/b')
76 converter = dispatch._create_path_to_resource_converter('a/b')
77 self.assertEqual('/h', converter(dispatch
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementProcessingStep.h46 virtual void dispatch(Element*) = 0;
H A DCustomElementMicrotaskStepDispatcher.cpp35 void CustomElementMicrotaskStepDispatcher::dispatch() function in class:WebCore::CustomElementMicrotaskStepDispatcher
37 m_syncQueue->dispatch();
39 m_asyncQueue->dispatch();
H A DCustomElementCallbackInvocation.cpp45 virtual void dispatch(Element*) OVERRIDE;
57 void AttachedDetachedInvocation::dispatch(Element* element) function in class:WebCore::AttachedDetachedInvocation
76 virtual void dispatch(Element*) OVERRIDE;
91 void AttributeChangedInvocation::dispatch(Element* element) function in class:WebCore::AttributeChangedInvocation
104 virtual void dispatch(Element*) OVERRIDE;
108 void CreatedInvocation::dispatch(Element* element) function in class:WebCore::CreatedInvocation
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBEventDispatcher.h43 static bool dispatch(Event*, WillBeHeapVector<RefPtrWillBeMember<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DDispatcher.java24 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; method in class:Dispatcher
/external/chromium_org/v8/tools/
H A Dlogreader.js118 * Returns whether a particular dispatch must be skipped.
120 * @param {!Object} dispatch Dispatch record.
121 * @return {boolean} True if dispatch must be skipped.
123 LogReader.prototype.skipDispatch = function(dispatch) {
129 * Does a dispatch of a log record.
135 // Obtain the dispatch.
139 var dispatch = this.dispatchTable_[command];
141 if (dispatch === null || this.skipDispatch(dispatch)) {
147 for (var i = 0; i < dispatch
[all...]
/external/guava/guava/src/com/google/common/eventbus/
H A DAsyncEventBus.java25 * dispatch events, allowing dispatch to occur asynchronously.
39 * Creates a new AsyncEventBus that will use {@code executor} to dispatch
43 * @param executor Executor to use to dispatch events. It is the caller's
53 * Creates a new AsyncEventBus that will use {@code executor} to dispatch
56 * @param executor Executor to use to dispatch events. It is the caller's
81 dispatch(eventWithHandler.event, eventWithHandler.handler);
86 * Calls the {@link #executor} to dispatch {@code event} to {@code handler}.
89 protected void dispatch(final Object event, final EventHandler handler) { method in class:AsyncEventBus
94 AsyncEventBus.super.dispatch(even
[all...]
/external/chromium_org/base/mac/
H A Dlibdispatch_task_runner.h8 #include <dispatch/dispatch.h>
18 // to PostTask() and friends to a dispatch queue, while being reusable as a
22 // needs a dispatch_queue_t for use in a system API. This ensures all dispatch
26 // underlying dispatch queue are released.
37 // Starts a new serial dispatch queue with a given name.
52 // This blocks the calling thread until all work on the dispatch queue has
58 // Returns the dispatch queue associated with this task runner, for use with
59 // system APIs that take dispatch queues. The caller is responsible for
/external/chromium_org/sandbox/mac/
H A Dlaunchd_interception_server.h8 #include <dispatch/dispatch.h>
H A Dmach_message_server.h8 #include <dispatch/dispatch.h>
76 // The dispatch queue used to service the server_source_.
79 // A MACH_RECV dispatch source for the server_port_.

Completed in 848 milliseconds

123456789