Searched defs:dispatch (Results 1 - 12 of 12) sorted by relevance

/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardTouchDelegate.java101 public boolean dispatch(MotionEvent event) { method in class:KeyguardTouchDelegate
105 service.dispatch(event);
112 Slog.w(TAG, "dispatch(event): NO SERVICE!");
/frameworks/rs/cpp/
H A DRenderScript.cpp37 dispatchTable* RS::dispatch = NULL; member in class:RS
57 RS::dispatch->ContextDeinitToClient(mContext);
62 RS::dispatch->ContextDestroy(mContext);
64 RS::dispatch->DeviceDestroy(mDev);
75 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType");
76 if (RS::dispatch->AllocationGetType == NULL) {
77 ALOGE("Couldn't initialize RS::dispatch->AllocationGetType");
80 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData");
81 if (RS::dispatch->TypeGetNativeData == NULL) {
82 ALOGE("Couldn't initialize RS::dispatch
440 RS::dispatch = new dispatchTable; member in class:RS
[all...]
H A DrsCppStructs.h144 static dispatchTable* dispatch; member in class:android::RSC::RS
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java37 public boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, 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);
135 public boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompat.EclairKeyEventVersionImpl
137 return KeyEventCompatEclair.dispatch(event, receiver, state, target);
207 public static boolean dispatch(KeyEvent event, KeyEvent.Callback receiver, Object state, method in class:KeyEventCompat
209 return IMPL.dispatch(event, receiver, state, target);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceWrapper.java195 public void dispatch(MotionEvent event) { method in class:KeyguardServiceWrapper
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewManager.java544 public void dispatch(MotionEvent event) { method in class:KeyguardViewManager
546 mKeyguardView.dispatch(event);
H A DKeyguardViewMediator.java1150 mKeyguardViewManager.dispatch(event);
1379 public void dispatch(MotionEvent event) { method in class:KeyguardViewMediator
H A DKeyguardHostView.java1728 public void dispatch(MotionEvent event) { method in class:KeyguardHostView
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp78 void dispatch(const omx_message &msg);
116 void OMX::CallbackDispatcher::dispatch(const omx_message &msg) { function in class:android::OMX::CallbackDispatcher
142 dispatch(msg);
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java74 * <p>The MIME type or data URI of this intent are normalized before dispatch -
1097 * Enable foreground dispatch to the given Activity.
1102 * <p>If any IntentFilters are provided to this method they are used to match dispatch Intents
1105 * relies on meta data outside of the IntentFilter matching for that dispatch Intent is handled
1108 * match then the dispatch is routed through the given PendingIntent. In other words, the second
1117 * the completion of their {@link Activity#onPause} callback to disable foreground dispatch
1122 * @param activity the Activity to dispatch to
1123 * @param intent the PendingIntent to start for the dispatch
1124 * @param filters the IntentFilters to override dispatching for, or null to always dispatch
1135 throw new IllegalStateException("Foreground dispatch ca
1359 public void dispatch(Tag tag) { method in class:NfcAdapter
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1184 * "done". This allows TextView to dispatch these as normal enter keys
2615 * @deprecated Use {@link #dispatch(Callback, DispatcherState, Object)} instead.
2618 public final boolean dispatch(Callback receiver) { method in class:KeyEvent
2619 return dispatch(receiver, null, null);
2629 * @param target The target of the dispatch, for use in tracking.
2633 public final boolean dispatch(Callback receiver, DispatcherState state, method in class:KeyEvent
2689 * Use with {@link KeyEvent#dispatch(Callback, DispatcherState, Object)}

Completed in 324 milliseconds