Home
last modified time | relevance | path

Searched refs:destChannelToken (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/services/inputflinger/dispatcher/include/
DInputDispatcherInterface.h160 virtual bool transferTouch(const sp<IBinder>& destChannelToken) = 0;
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java316 private static native boolean nativeTransferTouch(long ptr, IBinder destChannelToken); in nativeTransferTouch() argument
686 public boolean transferTouch(IBinder destChannelToken) { in transferTouch() argument
688 Objects.requireNonNull(destChannelToken, "destChannelToken must not be null."); in transferTouch()
689 return nativeTransferTouch(mPtr, destChannelToken); in transferTouch()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.h126 bool transferTouch(const sp<IBinder>& destChannelToken) override;
DInputDispatcher.cpp4865 bool InputDispatcher::transferTouch(const sp<IBinder>& destChannelToken) { in transferTouch() argument
4870 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(destChannelToken); in transferTouch()
4872 ALOGW("Could not find window associated with token=%p", destChannelToken.get()); in transferTouch()
4895 return transferTouchFocus(fromToken, destChannelToken); in transferTouch()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp1838 sp<IBinder> destChannelToken = ibinderForJavaObject(env, destChannelTokenObj); in nativeTransferTouch() local
1841 if (im->getInputManager()->getDispatcher()->transferTouch(destChannelToken)) { in nativeTransferTouch()
/frameworks/native/services/inputflinger/tests/
DInputDispatcher_test.cpp1847 sp<IBinder> destChannelToken) { in __anon3a8c1b2e0102() argument
1848 return dispatcher->transferTouch(destChannelToken); in __anon3a8c1b2e0102()