HomeSort by relevance Sort by last modified time
    Searched refs:dispatch (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/e2fsprogs/ext2ed/
ext2_com.c 38 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 (buffer)
    [all...]
group_com.c 34 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 (buffer)
    [all...]
blockbitmap_com.c 66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
88 dispatch (buffer);
104 dispatch (buffer);
139 dispatch ("show"); /* Show the result */
167 dispatch ("show");
inodebitmap_com.c 45 strcpy (buffer,"show");dispatch (buffer);
61 dispatch (buffer);
77 dispatch (buffer);
103 dispatch ("show");
129 dispatch ("show");
dir_com.c 196 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 ("dir"); /* Yes - Pass to the pointed directory *
    [all...]
super_com.c 146 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
147 strcpy (buffer,"show");dispatch (buffer);
156 dispatch ("gocopy 0");
158 dispatch ("show");
file_com.c 53 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 (buffer)
    [all...]
inode_com.c 55 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 (buffer)
    [all...]
general_com.c 195 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 (buffer)
    [all...]
  /external/webkit/JavaScriptCore/wtf/qt/
MainThreadQt.cpp 46 void dispatch();
54 void MainThreadInvoker::dispatch() function in class:WTF::MainThreadInvoker
67 QMetaObject::invokeMethod(webkit_main_thread_invoker(), "dispatch", Qt::QueuedConnection);
  /external/webkit/WebKitTools/pywebsocket/test/
test_dispatch.py 33 """Tests for dispatch module."""
41 from mod_pywebsocket import dispatch namespace
54 dispatch._normalize_path('/a/b'))
56 dispatch._normalize_path('\\a\\b'))
58 dispatch._normalize_path('/a/c/../b'))
60 dispatch._normalize_path('abc'))
63 converter = dispatch._path_to_resource_converter('/a/b')
69 converter = dispatch._path_to_resource_converter('a/b')
72 converter = dispatch._path_to_resource_converter('/a/b///')
76 converter = dispatch._path_to_resource_converter('/a/../a/b/../b/'
    [all...]
  /external/webkit/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageAreaImpl.cpp 162 StorageEventDispatcher::dispatch(key, oldValue, value, m_storageType, m_securityOrigin.get(), frame);
184 StorageEventDispatcher::dispatch(key, oldValue, String(), m_storageType, m_securityOrigin.get(), frame);
204 StorageEventDispatcher::dispatch(String(), String(), String(), m_storageType, m_securityOrigin.get(), frame);
  /external/webkit/WebKit/chromium/src/js/
InjectDispatch.js 39 * Main dispatch method, all calls from the host to InspectorController go
45 InspectorControllerDispatcher.dispatch = function(functionName, json_args)
60 * @param {string} method name of the dispatch method.
76 function dispatch(method, var_args) { function
105 DevToolsAgentHost.dispatch(call);
  /external/webkit/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, function in class:WebCore::StorageEventDispatcher
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
headerparserhandler.py 40 import dispatch namespace
62 dispatcher = dispatch.Dispatcher(_HANDLER_ROOT, _HANDLER_SCAN)
93 except dispatch.DispatchError, e:
  /external/webkit/WebCore/dom/
ContainerNodeAlgorithms.h 88 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/dbus/test/name-test/
run-test.sh 30 echo "running test-pending-call-dispatch"
31 libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-client failed"
  /external/webkit/WebCore/inspector/
InjectedScript.h 51 void dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginHostProxy.h 31 #include <dispatch/dispatch.h>
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BatchingNamedTaskExecutor.java 55 private void dispatch(NamedTask task) { method in class:BatchingNamedTaskExecutor
75 dispatch(task);
  /external/v8/tools/
logreader.js 188 * Returns whether a particular dispatch must be skipped.
190 * @param {!Object} dispatch Dispatch record.
191 * @return {boolean} True if dispatch must be skipped.
193 devtools.profiler.LogReader.prototype.skipDispatch = function(dispatch) {
199 * Does a dispatch of a log record.
205 // Obtain the dispatch.
210 var dispatch = this.dispatchTable_[command];
212 if (dispatch === null || this.skipDispatch(dispatch)) {
    [all...]
  /external/webkit/WebKit/android/wds/
Command.h 89 // Dispatch this command
90 void dispatch();
  /external/dbus/bus/
Android.mk 25 dispatch.c \
  /external/chromium/third_party/libevent/
event-internal.h 43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop

Completed in 1077 milliseconds

1 2 3 4