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

/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1238 sp<InputChannel> fromChannel = local
1243 if (fromChannel == NULL || toChannel == NULL) {
1248 transferTouchFocus(fromChannel, toChannel)) {
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java186 InputChannel fromChannel, InputChannel toChannel);
1195 * @param fromChannel The channel of a window that currently has touch focus.
1201 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1202 if (fromChannel == null) {
1203 throw new IllegalArgumentException("fromChannel must not be null.");
1208 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
185 nativeTransferTouchFocus(long ptr, InputChannel fromChannel, InputChannel toChannel) argument
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp2978 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
2981 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
2982 fromChannel->getName().string(), toChannel->getName().string());
2987 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3038 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);

Completed in 223 milliseconds