Searched defs:fromChannel (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1484 sp<InputChannel> fromChannel = local
1489 if (fromChannel == NULL || toChannel == NULL) {
1494 transferTouchFocus(fromChannel, toChannel)) {
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java226 InputChannel fromChannel, InputChannel toChannel);
1613 * @param fromChannel The channel of a window that currently has touch focus.
1619 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1620 if (fromChannel == null) {
1621 throw new IllegalArgumentException("fromChannel must not be null.");
1626 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
225 nativeTransferTouchFocus(long ptr, InputChannel fromChannel, InputChannel toChannel) argument
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp3033 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
3036 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3037 fromChannel->getName().string(), toChannel->getName().string());
3042 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3093 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);

Completed in 58 milliseconds