Searched defs:dispatch (Results 1 - 20 of 20) sorted by last modified time

/frameworks/support/v4/eclair/android/support/v4/view/
H A DKeyEventCompatEclair.java28 public static boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompatEclair
30 return event.dispatch(receiver, (KeyEvent.DispatcherState)state, target);
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java37 boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, Object target); method in interface:KeyEventCompat.KeyEventVersionImpl
112 public boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompat.BaseKeyEventVersionImpl
114 return event.dispatch(receiver);
140 public boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompat.EclairKeyEventVersionImpl
142 return KeyEventCompatEclair.dispatch(event, receiver, state, target);
217 public static boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompat
219 return IMPL.dispatch(event, receiver, state, target);
/frameworks/rs/cpp/
H A DRenderScript.cpp41 dispatchTable* RS::dispatch = nullptr; member in class:RS
62 RS::dispatch->ContextDeinitToClient(mContext);
67 RS::dispatch->ContextDestroy(mContext);
86 if (loadSymbols(handle, *RS::dispatch, targetApi) == false) {
112 RS::dispatch = new dispatchTable; member in class:RS
148 ALOGE("Couldn't initialize dispatch table");
162 RsDevice device = RS::dispatch->DeviceCreate();
174 mContext = RS::dispatch->ContextCreate(device, 0, targetApi, RS_CONTEXT_TYPE_NORMAL, flags);
216 RS::dispatch->ContextInitToClient(rs->mContext);
223 RsMessageToClientType r = RS::dispatch
[all...]
H A DrsCppStructs.h423 static dispatchTable* dispatch; member in class:android::RSC::RS
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DMockAlarmManager.java37 * Creates an AlarmManager whose alarm dispatch can be controlled
68 public boolean dispatch(String tag) { method in class:MockAlarmManager
73 alarm.dispatch();
120 public void dispatch() { method in class:MockAlarmManager.PendingAlarm
/frameworks/native/vulkan/libvulkan/
H A Ddriver.h41 InstanceDispatchTable dispatch; member in struct:vulkan::api::InstanceData
53 DeviceDispatchTable dispatch; member in struct:vulkan::api::DeviceData
143 hwvulkan_dispatch_t* dispatch = local
146 if (dispatch->magic != HWVULKAN_DISPATCH_MAGIC && dispatch->vtbl != data) {
147 ALOGE("invalid dispatchable object magic 0x%" PRIxPTR, dispatch->magic);
151 dispatch->vtbl = data;
160 const hwvulkan_dispatch_t* dispatch = local
163 return const_cast<void*>(dispatch->vtbl);
H A Dswapchain.cpp478 const auto& dispatch = GetData(device).driver; local
585 if (dispatch.GetSwapchainGrallocUsageANDROID) {
586 result = dispatch.GetSwapchainGrallocUsageANDROID(
678 dispatch.CreateImage(device, &image_create, nullptr, &img.image);
701 dispatch.DestroyImage(device, img.image, nullptr);
720 const auto& dispatch = GetData(device).driver; local
860 const auto& dispatch = GetData(queue).driver; local
873 result = dispatch.QueueSignalReleaseImageANDROID(
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp33 hwvulkan_dispatch_t dispatch; member in struct:VkPhysicalDevice_T
37 hwvulkan_dispatch_t dispatch; member in struct:VkInstance_T
44 hwvulkan_dispatch_t dispatch; member in struct:VkQueue_T
48 hwvulkan_dispatch_t dispatch; member in struct:VkCommandBuffer_T
97 hwvulkan_dispatch_t dispatch; member in struct:VkDevice_T
305 instance->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
307 instance->physical_device.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
623 device->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
626 device->queue.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
702 cmdbufs[i]->dispatch
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DArgumentReplacingDispatcher.java16 package android.hardware.camera2.dispatch;
32 * source dispatch type, whose methods with {@link #dispatch} will be called
34 * argument replacement type, args in {@link #dispatch} matching {@code argumentIndex}
54 * @param target destination dispatch type, methods will be redirected to this dispatcher
67 public Object dispatch(Method method, Object[] args) throws Throwable { method in class:ArgumentReplacingDispatcher
74 return mTarget.dispatch(method, args);
H A DBroadcastDispatcher.java16 package android.hardware.camera2.dispatch;
26 * Broadcast a single dispatch into multiple other dispatchables.
28 * <p>Every time {@link #dispatch} is invoked, all the broadcast targets will
29 * see the same dispatch as well. The first target's return value is returned.</p>
38 * Create a broadcast dispatcher from the supplied dispatch targets.
40 * @param dispatchTargets one or more targets to dispatch to
49 public Object dispatch(Method method, Object[] args) throws Throwable { method in class:BroadcastDispatcher
54 Object localResult = dispatchTarget.dispatch(method, args);
H A DDispatchable.java16 package android.hardware.camera2.dispatch;
21 * Dynamically dispatch a method and its argument to some object.
34 public Object dispatch(Method method, Object[] args) throws Throwable; method in interface:Dispatchable
H A DDuckTypingDispatcher.java16 package android.hardware.camera2.dispatch;
24 * Duck typing dispatcher; converts dispatch methods calls from one class to another by
31 * @param <TFrom> source dispatch type, whose methods with {@link #dispatch} will be called
32 * @param <T> destination dispatch type, methods will be converted to the class of {@code T}
41 * @param target destination dispatch type, methods will be redirected to this dispatcher
42 * @param targetClass destination dispatch class, methods will be converted to this class's
52 public Object dispatch(Method method, Object[] args) { method in class:DuckTypingDispatcher
H A DHandlerDispatcher.java16 package android.hardware.camera2.dispatch;
46 * Create a dispatcher that forwards it's dispatch calls by posting
52 * @return a dispatcher that will forward it's dispatch calls to a handler
60 public Object dispatch(final Method method, final Object[] args) throws Throwable { method in class:HandlerDispatcher
65 mDispatchTarget.dispatch(method, args);
H A DInvokeDispatcher.java16 package android.hardware.camera2.dispatch;
37 public Object dispatch(Method method, Object[] args) { method in class:InvokeDispatcher
H A DMethodNameInvoker.java16 package android.hardware.camera2.dispatch;
28 * @param <T> destination dispatch type, methods will be looked up in the class of {@code T}
40 * @param target destination dispatch type, invokes will be redirected to this dispatcher
41 * @param targetClass destination dispatch class, the invoked methods will be from this class
88 return (K) mTarget.dispatch(targetMethod, params);
H A DNullDispatcher.java16 package android.hardware.camera2.dispatch;
35 public Object dispatch(Method method, Object[] args) { method in class:NullDispatcher
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java78 * <p>The MIME type or data URI of this intent are normalized before dispatch -
1199 * Enable foreground dispatch to the given Activity.
1204 * <p>If any IntentFilters are provided to this method they are used to match dispatch Intents
1207 * relies on meta data outside of the IntentFilter matching for that dispatch Intent is handled
1210 * match then the dispatch is routed through the given PendingIntent. In other words, the second
1219 * the completion of their {@link Activity#onPause} callback to disable foreground dispatch
1224 * @param activity the Activity to dispatch to
1225 * @param intent the PendingIntent to start for the dispatch
1226 * @param filters the IntentFilters to override dispatching for, or null to always dispatch
1237 throw new IllegalStateException("Foreground dispatch ca
1586 public void dispatch(Tag tag) { method in class:NfcAdapter
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1124 * "done". This allows TextView to dispatch these as normal enter keys
2650 * @deprecated Use {@link #dispatch(Callback, DispatcherState, Object)} instead.
2653 public final boolean dispatch(Callback receiver) { method in class:KeyEvent
2654 return dispatch(receiver, null, null);
2664 * @param target The target of the dispatch, for use in tracking.
2668 public final boolean dispatch(Callback receiver, DispatcherState state, method in class:KeyEvent
2724 * Use with {@link KeyEvent#dispatch(Callback, DispatcherState, Object)}
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp90 void dispatch(std::list<omx_message> &messages);
130 void OMX::CallbackDispatcher::dispatch(std::list<omx_message> &messages) { function in class:android::OMX::CallbackDispatcher
155 dispatch(messages);

Completed in 317 milliseconds