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

/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java179 InputChannel fromChannel, InputChannel toChannel);
1064 * @param fromChannel The channel of a window that currently has touch focus.
1070 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1071 if (fromChannel == null) {
1072 throw new IllegalArgumentException("fromChannel 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.h333 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
390 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
H A DInputDispatcher.cpp2974 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
2977 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
2978 fromChannel->getName().string(), toChannel->getName().string());
2983 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3030 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp1195 sp<InputChannel> fromChannel = local
1200 if (fromChannel == NULL || toChannel == NULL) {
1205 transferTouchFocus(fromChannel, toChannel);

Completed in 1475 milliseconds