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

1234

/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");
H A Dfile_com.c53 dispatch ("settype ext2_inode");
90 strcpy (buffer,"show");dispatch (buffer);
108 sprintf (buffer,"show");dispatch (buffer);
135 sprintf (buffer,"show");dispatch (buffer);
158 sprintf (buffer,"show");dispatch (buffer);
191 strcpy (buffer,"show");dispatch (buffer);
222 strcpy (buffer,"show");dispatch (buffer);
239 sprintf (buffer,"show");dispatch (buffer);
245 sprintf (buffer,"show");dispatch (buffer);
496 strcpy (buffer,"show");dispatch (buffe
[all...]
H A Dinode_com.c55 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
56 strcpy (buffer,"show");dispatch (buffer);
103 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
104 strcpy (buffer,"show");dispatch (buffer);
306 dispatch (buffer);
311 dispatch (buffer);
325 sprintf (buffer,"setoffset %ld",group_offset);dispatch (buffer);
326 sprintf (buffer,"settype ext2_group_desc");dispatch (buffer);
344 sprintf (buffer,"settype file");dispatch (buffer);
366 sprintf (buffer,"settype dir");dispatch (buffe
[all...]
H A Dgeneral_com.c195 dispatch ("setoffset 0");
196 dispatch ("help"); /* Show help screen */
419 dispatch ("show");
486 strcpy (buffer,"show");dispatch (buffer);
507 sprintf (tmp_buffer,"show");dispatch (tmp_buffer);
521 sprintf (tmp_buffer,"show");dispatch (tmp_buffer);
707 dispatch (buffer);
713 sprintf (buffer,"show");dispatch (buffer);
736 dispatch (buffer);
742 sprintf (buffer,"show");dispatch (buffe
[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/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.
140 var dispatch = this.dispatchTable_[command];
142 if (dispatch === null || this.skipDispatch(dispatch)) {
148 for (var i = 0; i < dispatch
[all...]
/external/clang/lib/AST/
H A DDumpXML.cpp67 void dispatch(Decl *D) { function in struct:__anon2735::XMLDeclVisitor
72 DISPATCH(dispatch##DERIVED##DeclAttrs, DERIVED##Decl); \
74 DISPATCH(dispatch##DERIVED##DeclChildren, DERIVED##Decl); \
75 DISPATCH(dispatch##DERIVED##DeclAsContext, DERIVED##Decl); \
83 void dispatch##DERIVED##DeclAttrs(DERIVED##Decl *D) { \
84 DISPATCH(dispatch##BASE##Attrs, BASE); \
88 void dispatch##DERIVED##DeclChildren(DERIVED##Decl *D) { \
89 DISPATCH(dispatch##BASE##Children, BASE); \
93 void dispatch##DERIVED##DeclAsContext(DERIVED##Decl *D) { \
94 DISPATCH(dispatch##BAS
122 void dispatch(Type *T) { function in struct:__anon2735::XMLTypeVisitor
311 void dispatch(const TemplateArgument &A) { function in struct:__anon2735::XMLDumper
351 void dispatch(const TemplateArgumentLoc &A) { function in struct:__anon2735::XMLDumper
384 void dispatch(Decl *D) { function in struct:__anon2735::XMLDumper
507 void dispatch(CXXCtorInitializer *Init) { function in struct:__anon2735::XMLDumper
885 void dispatch(TypeLoc TL) { function in struct:__anon2735::XMLDumper
889 void dispatch(QualType T) { function in struct:__anon2735::XMLDumper
1017 void dispatch(Stmt *S) { function in struct:__anon2735::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.cpp107 static true_t dispatch(U);
108 static false_t dispatch(...);
111 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;
/external/webkit/Tools/Scripts/webkitpy/style/
H A Dchecker_unittest.py318 checker = self._dispatcher.dispatch(file_path=path,
370 """Tests dispatch() method of CheckerDispatcher class."""
372 def dispatch(self, file_path): member in class:CheckerDispatcherDispatchTest
373 """Call dispatch() with the given file path."""
376 checker = dispatcher.dispatch(file_path,
383 checker = self.dispatch(file_path)
388 checker = self.dispatch(file_path)
431 checker = self.dispatch(file_path)
453 checker = self.dispatch(file_path)
463 checker = self.dispatch(file_pat
707 def dispatch(self, file_path, style_error_handler, min_confidence): member in class:StyleProcessor_CodeCoverageTest.MockDispatcher
[all...]
/external/dbus/bus/
H A DAndroid.mk30 dispatch.c \
/external/chromium/third_party/libevent/
H A Devent-internal.h43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop

Completed in 682 milliseconds

1234