Searched refs:fromChannel (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/services/inputflinger/
H A DInputDispatcher.h339 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
396 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
H A DInputDispatcher.cpp3034 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
3037 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3038 fromChannel->getName().string(), toChannel->getName().string());
3043 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3094 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1344 sp<InputChannel> fromChannel = local
1349 if (fromChannel == NULL || toChannel == NULL) {
1354 transferTouchFocus(fromChannel, toChannel)) {
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java210 InputChannel fromChannel, InputChannel toChannel);
1520 * @param fromChannel The channel of a window that currently has touch focus.
1526 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1527 if (fromChannel == null) {
1528 throw new IllegalArgumentException("fromChannel must not be null.");
1533 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
209 nativeTransferTouchFocus(long ptr, InputChannel fromChannel, InputChannel toChannel) argument

Completed in 723 milliseconds