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

12345

/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/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...]
H A Dblockbitmap_com.c66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
88 dispatch (buffer);
104 dispatch (buffer);
139 dispatch ("show"); /* Show the result */
167 dispatch ("show");
H A Dinodebitmap_com.c45 strcpy (buffer,"show");dispatch (buffer);
61 dispatch (buffer);
77 dispatch (buffer);
103 dispatch ("show");
129 dispatch ("show");
H A Ddir_com.c196 5. If the required entry is found, we dispatch a remember command to insert the current inode (remember that
202 6. We then dispatch a followinode command to reach the inode pointed by the required entry. This command will
205 7. We check the inode's type to see if it is a directory. If it is, we dispatch a dir command to "enter the directory",
210 typically the case.), we note the path it is pointing at, the saved inode is recalled, we dispatch dir to
264 dispatch ("remember internal_variable"); /* Move the inode into the objects memory */
266 dispatch ("followinode"); /* Go to the inode pointed by this directory entry */
281 dispatch ("recall internal_variable"); /* Return to the original inode */
282 dispatch ("dir"); /* and to the directory */
285 dispatch (temp); /* (which can call ourself or the general cd) */
292 dispatch ("di
[all...]
H A Dsuper_com.c142 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
143 strcpy (buffer,"show");dispatch (buffer);
152 dispatch ("gocopy 0");
154 dispatch ("show");
/external/compiler-rt/BlocksRuntime/tests/
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/webkit/Source/JavaScriptCore/wtf/qt/
H A DMainThreadQt.cpp46 void dispatch();
54 void MainThreadInvoker::dispatch() function in class:WTF::MainThreadInvoker
67 QMetaObject::invokeMethod(webkit_main_thread_invoker(), "dispatch", Qt::QueuedConnection);
/external/openssh/
H A Ddispatch.c1 /* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */
36 #include "dispatch.h"
42 dispatch_fn *dispatch[DISPATCH_MAX]; variable
65 dispatch[i] = dflt;
75 dispatch[i] = fn;
81 dispatch[type] = fn;
97 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL)
98 (*dispatch[type])(type, seqnr, ctxt);
/external/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/clang/lib/AST/
H A DDumpXML.cpp65 void dispatch(Decl *D) { function in struct:__anon3621::XMLDeclVisitor
71 DISPATCH(dispatch##DERIVED##DeclAttrs, DERIVED##Decl); \
73 DISPATCH(dispatch##DERIVED##DeclChildren, DERIVED##Decl); \
74 DISPATCH(dispatch##DERIVED##DeclAsContext, DERIVED##Decl); \
82 void dispatch##DERIVED##DeclAttrs(DERIVED##Decl *D) { \
83 DISPATCH(dispatch##BASE##Attrs, BASE); \
87 void dispatch##DERIVED##DeclChildren(DERIVED##Decl *D) { \
88 DISPATCH(dispatch##BASE##Children, BASE); \
92 void dispatch##DERIVED##DeclAsContext(DERIVED##Decl *D) { \
93 DISPATCH(dispatch##BAS
121 void dispatch(Type *T) { function in struct:__anon3621::XMLTypeVisitor
308 void dispatch(const TemplateArgument &A) { function in struct:__anon3621::XMLDumper
349 void dispatch(const TemplateArgumentLoc &A) { function in struct:__anon3621::XMLDumper
382 void dispatch(Decl *D) { function in struct:__anon3621::XMLDumper
515 void dispatch(CXXCtorInitializer *Init) { function in struct:__anon3621::XMLDumper
884 void dispatch(TypeLoc TL) { function in struct:__anon3621::XMLDumper
888 void dispatch(QualType T) { function in struct:__anon3621::XMLDumper
1028 void dispatch(Stmt *S) { function in struct:__anon3621::XMLDumper
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBEventDispatcher.h44 static bool dispatch(Event*, Vector<RefPtr<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
H A DStorageEventDispatcher.h43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherChromium.cpp46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, function in class:WebCore::StorageEventDispatcher
/external/clang/test/SemaTemplate/
H A Dinstantiate-complete.cpp106 static true_t dispatch(U);
107 static false_t dispatch(...);
110 enum { value = sizeof(dispatch(trigger())) == sizeof(true_t) };
/external/webkit/Source/WebCore/page/
H A DFrameActionScheduler.cpp45 // Only dispatch events to nodes that are in the document
87 dispatch();
91 void FrameActionScheduler::dispatch() function in class:WebCore::FrameActionScheduler
H A DFrameActionScheduler.h64 void dispatch();
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DNetscapePluginHostProxy.h31 #include <dispatch/dispatch.h>
/external/webkit/Source/WebCore/dom/
H A DContainerNodeAlgorithms.h88 static void dispatch(GenericNode*) function in struct:WebCore::Private::NodeRemovalDispatcher
96 static void dispatch(GenericNode* node) function in struct:WebCore::Private::NodeRemovalDispatcher
139 NodeRemovalDispatcher<GenericNode, ShouldDispatchRemovalNotification<GenericNode>::value>::dispatch(n);
/external/chromium/base/
H A Dmessage_pump_glib_x.cc174 gdksource_->source_funcs->dispatch = gdkdispatcher_;
188 gdksource_->source_funcs->dispatch = gdkdispatcher_;
198 // Replace the dispatch callback of the GDK event source temporarily so that
201 gdksource_->source_funcs->dispatch;
202 gdksource_->source_funcs->dispatch = PlaceholderDispatch;
208 gdksource_->source_funcs->dispatch = cb;
222 pump_x->gdkdispatcher_ = pump_x->gdksource_->source_funcs->dispatch;

Completed in 622 milliseconds

12345