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

/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp1207 sp<InputChannel> toChannel = local
1210 if (fromChannel == NULL || toChannel == NULL) {
1215 transferTouchFocus(fromChannel, toChannel);
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java179 InputChannel fromChannel, InputChannel toChannel);
1066 * @param toChannel The channel of the window that should receive touch focus in
1071 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1075 if (toChannel == null) {
1076 throw new IllegalArgumentException("toChannel must not be null.");
1078 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
178 nativeTransferTouchFocus(int ptr, InputChannel fromChannel, InputChannel toChannel) argument
/frameworks/base/services/input/
H A DInputDispatcher.cpp2976 const sp<InputChannel>& toChannel) {
2978 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
2979 fromChannel->getName().string(), toChannel->getName().string());
2985 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel);
3032 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
2975 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument

Completed in 250 milliseconds