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

/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1486 sp<InputChannel> toChannel = 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);
1614 * @param toChannel The channel of the window that should receive touch focus in
1619 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1623 if (toChannel == null) {
1624 throw new IllegalArgumentException("toChannel 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.cpp3034 const sp<InputChannel>& toChannel) {
3036 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3037 fromChannel->getName().string(), toChannel->getName().string());
3043 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel);
3094 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
3033 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument

Completed in 55 milliseconds