/frameworks/native/libs/input/ |
D | IInputFlinger.cpp | 48 virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument 53 data.writeStrongBinder(toToken); in transferTouchFocus() 110 sp<IBinder> toToken = data.readStrongBinder(); in onTransact() local 111 transferTouchFocus(fromToken, toToken); in onTransact()
|
/frameworks/native/services/inputflinger/ |
D | InputManager.cpp | 120 void InputManager::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument 121 mDispatcher->transferTouchFocus(fromToken, toToken); in transferTouchFocus()
|
D | InputManager.h | 99 virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken);
|
D | InputDispatcher.h | 360 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) = 0; 442 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken)
|
D | InputDispatcher.cpp | 3469 bool InputDispatcher::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument 3470 if (fromToken == toToken) { in transferTouchFocus() 3481 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toToken); in transferTouchFocus() 3529 sp<InputChannel> toChannel = getInputChannelLocked(toToken); in transferTouchFocus()
|
/frameworks/native/include/input/ |
D | IInputFlinger.h | 40 virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) = 0;
|
/frameworks/native/libs/gui/include/gui/ |
D | LayerState.h | 264 sp<IBinder> toToken; member
|
D | SurfaceComposerClient.h | 441 Transaction& transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken);
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | StubTransaction.java | 100 public SurfaceControl.Transaction transferTouchFocus(IBinder fromToken, IBinder toToken) { in transferTouchFocus() argument
|
/frameworks/native/libs/gui/tests/ |
D | EndToEndNativeInputTest.cpp | 505 sp<IBinder> toToken = toSurface->mServerChannel->getToken(); in TEST_F() local 507 t.transferTouchFocus(fromToken, toToken).apply(true); in TEST_F()
|
/frameworks/native/libs/gui/ |
D | LayerState.cpp | 419 output.writeStrongBinder(transferTouchFocusCommand.toToken); in write() 431 transferTouchFocusCommand.toToken = input.readStrongBinder(); in read()
|
D | SurfaceComposerClient.cpp | 1122 const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument 1125 transferTouchFocusCommand.toToken = toToken; in transferTouchFocus()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceControl.java | 195 IBinder toToken); in nativeTransferTouchFocus() argument 2275 public Transaction transferTouchFocus(IBinder fromToken, IBinder toToken) { in transferTouchFocus() argument 2276 nativeTransferTouchFocus(mNativeObject, fromToken, toToken); in transferTouchFocus()
|
/frameworks/base/core/jni/ |
D | android_view_SurfaceControl.cpp | 477 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj)); in nativeTransferTouchFocus() local 478 transaction->transferTouchFocus(fromToken, toToken); in nativeTransferTouchFocus()
|
/frameworks/native/services/surfaceflinger/ |
D | SurfaceFlinger.cpp | 2960 transferTouchFocusCommand.toToken != nullptr && in executeInputWindowCommands() 2961 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) { in executeInputWindowCommands() 2963 transferTouchFocusCommand.toToken); in executeInputWindowCommands()
|