Home
last modified time | relevance | path

Searched defs:dispatch (Results 1 – 25 of 179) sorted by relevance

12345678

/external/mtools/
Dmtools.c26 static const struct dispatch { struct
30 } dispatch[] = { argument
/external/perfetto/ui/src/frontend/
Drouter_jsdomtest.ts59 const dispatch = dingus<(a: DeferredAction) => void>(); constant
78 const dispatch = dingus<(a: DeferredAction) => void>(); constant
123 const dispatch = dingus<(a: DeferredAction) => void>(); constant
132 const dispatch = dingus<(a: DeferredAction) => void>(); constant
/external/perfetto/src/profiling/memory/
Dmalloc_interceptor_bionic_hooks.cc192 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_malloc_usable_size() local
197 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_mallinfo() local
202 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_mallopt() local
207 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_malloc_info() local
217 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_malloc_iterate() local
222 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_malloc_disable() local
227 const MallocDispatch* dispatch = GetDispatch(); in heapprofd_malloc_enable() local
/external/guava/android/guava/src/com/google/common/eventbus/
DDispatcher.java70 abstract void dispatch(Object event, Iterator<Subscriber> subscribers); in dispatch() method in Dispatcher
96 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.PerThreadQueuedDispatcher
155 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.LegacyAsyncDispatcher
183 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.ImmediateDispatcher
/external/guava/guava/src/com/google/common/eventbus/
DDispatcher.java70 abstract void dispatch(Object event, Iterator<Subscriber> subscribers); in dispatch() method in Dispatcher
96 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.PerThreadQueuedDispatcher
155 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.LegacyAsyncDispatcher
183 void dispatch(Object event, Iterator<Subscriber> subscribers) { in dispatch() method in Dispatcher.ImmediateDispatcher
/external/llvm-project/clang/test/Profile/
Dcxx-hash-v2.cpp112 static void *dispatch[] = {&&done}; in no_gotos() local
119 static void *dispatch[] = {&&done}; in direct_goto() local
127 static void *dispatch[] = {&&done}; in indirect_goto() local
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dprofiling_info.cc25 for (const auto& dispatch : dispatches) { in GetTotalTime() local
40 for (const auto& dispatch : dispatches) { in GetDetailedReport() local
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DDispatcher.kt64 override fun dispatch(context: CoroutineContext, block: Runnable): Unit = in toString() method in kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher
160 override fun dispatch(context: CoroutineContext, block: Runnable) = dispatch(block, false) in execute() method in kotlinx.coroutines.scheduling.LimitingDispatcher
162 private fun dispatch(block: Runnable, tailDispatch: Boolean) { in execute() method
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/
DEventDispatcher.java69 public void dispatch(Event<T> event) { in dispatch() method in EventDispatcher
91 public void dispatch(Event<T> event) { in dispatch() method in EventDispatcher.HandlerAndListener
/external/python/cpython2/Lib/compiler/
Dvisitor.py42 def dispatch(self, node, *args): member in ASTVisitor
74 def dispatch(self, node, *args): member in ExampleASTVisitor
/external/rust/crates/proc-macro-nested/src/
Dlib.rs50 macro_rules! dispatch { macro
/external/guava/guava/src/com/google/common/util/concurrent/
DListenerCallQueue.java117 public void dispatch() { in dispatch() method in ListenerCallQueue
159 void dispatch() { in dispatch() method in ListenerCallQueue.PerListenerQueue
/external/guava/android/guava/src/com/google/common/util/concurrent/
DListenerCallQueue.java117 public void dispatch() { in dispatch() method in ListenerCallQueue
159 void dispatch() { in dispatch() method in ListenerCallQueue.PerListenerQueue
/external/kotlinx.coroutines/kotlinx-coroutines-test/test/
DTestDispatchersTest.kt75 override fun dispatch(context: CoroutineContext, block: Runnable) = expectUnreached() in <lambda>() method in kotlinx.coroutines.test.TestDispatchersTest.ImmediateDispatcher
84 override fun dispatch(context: CoroutineContext, block: Runnable) { in <lambda>() method in kotlinx.coroutines.test.TestDispatchersTest.RegularDispatcher
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
DDispatcher.java24 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; in dispatch() method in Dispatcher
/external/mockwebserver/src/main/java/com/google/mockwebserver/
DDispatcher.java26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException; in dispatch() method in Dispatcher
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Ddata.py147 def dispatch(cls, files): member in Manpages
159 dispatch = classmethod(dispatch) variable in Manpages
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Ddata.py147 def dispatch(cls, files): member in Manpages
159 dispatch = classmethod(dispatch) variable in Manpages
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Ddata.py147 def dispatch(cls, files): member in Manpages
159 dispatch = classmethod(dispatch) variable in Manpages
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Ddata.py147 def dispatch(cls, files): member in Manpages
159 dispatch = classmethod(dispatch) variable in Manpages
/external/mesa3d/src/mapi/glapi/
Dglapi_entrypoint.c197 unsigned long dispatch = __glapi_sparc_get_dispatch(); in init_glapi_relocs() local
201 unsigned long dispatch = (unsigned long) &_glapi_Dispatch; in init_glapi_relocs() local
Dglapi.c61 _glapi_set_dispatch(struct _glapi_table *dispatch) in _glapi_set_dispatch()
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DFilterPipeline.java43 void dispatch(ServletRequest request, ServletResponse response, FilterChain defaultFilterChain) in dispatch() method
DDefaultFilterPipeline.java43 public void dispatch( in dispatch() method in DefaultFilterPipeline
/external/llvm-project/llvm/tools/llvm-xray/
Dxray-registry.cpp32 HandlerType dispatch(cl::SubCommand *SC) { in dispatch() function

12345678