Home
last modified time | relevance | path

Searched refs:toToken (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/libs/input/
DIInputFlinger.cpp48 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/
DInputManager.cpp120 void InputManager::transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument
121 mDispatcher->transferTouchFocus(fromToken, toToken); in transferTouchFocus()
DInputManager.h99 virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken);
DInputDispatcher.h360 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) = 0;
442 virtual bool transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken)
DInputDispatcher.cpp3469 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/
DIInputFlinger.h40 virtual void transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken) = 0;
/frameworks/native/libs/gui/include/gui/
DLayerState.h264 sp<IBinder> toToken; member
DSurfaceComposerClient.h441 Transaction& transferTouchFocus(const sp<IBinder>& fromToken, const sp<IBinder>& toToken);
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DStubTransaction.java100 public SurfaceControl.Transaction transferTouchFocus(IBinder fromToken, IBinder toToken) { in transferTouchFocus() argument
/frameworks/native/libs/gui/tests/
DEndToEndNativeInputTest.cpp505 sp<IBinder> toToken = toSurface->mServerChannel->getToken(); in TEST_F() local
507 t.transferTouchFocus(fromToken, toToken).apply(true); in TEST_F()
/frameworks/native/libs/gui/
DLayerState.cpp419 output.writeStrongBinder(transferTouchFocusCommand.toToken); in write()
431 transferTouchFocusCommand.toToken = input.readStrongBinder(); in read()
DSurfaceComposerClient.cpp1122 const sp<IBinder>& fromToken, const sp<IBinder>& toToken) { in transferTouchFocus() argument
1125 transferTouchFocusCommand.toToken = toToken; in transferTouchFocus()
/frameworks/base/core/java/android/view/
DSurfaceControl.java195 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/
Dandroid_view_SurfaceControl.cpp477 sp<IBinder> toToken(ibinderForJavaObject(env, toTokenObj)); in nativeTransferTouchFocus() local
478 transaction->transferTouchFocus(fromToken, toToken); in nativeTransferTouchFocus()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp2960 transferTouchFocusCommand.toToken != nullptr && in executeInputWindowCommands()
2961 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) { in executeInputWindowCommands()
2963 transferTouchFocusCommand.toToken); in executeInputWindowCommands()