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

/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp1197 sp<InputChannel> toChannel = local
1200 if (fromChannel == NULL || toChannel == NULL) {
1205 transferTouchFocus(fromChannel, toChannel);
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java179 InputChannel fromChannel, InputChannel toChannel);
1065 * @param toChannel The channel of the window that should receive touch focus in
1070 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1074 if (toChannel == null) {
1075 throw new IllegalArgumentException("toChannel must not be null.");
1077 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
178 nativeTransferTouchFocus(int ptr, InputChannel fromChannel, InputChannel toChannel) argument
/frameworks/base/services/input/
H A DInputDispatcher.cpp2975 const sp<InputChannel>& toChannel) {
2977 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
2978 fromChannel->getName().string(), toChannel->getName().string());
2984 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel);
3031 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
2974 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument

Completed in 491 milliseconds