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

/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.h333 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
390 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
H A DInputDispatcher.cpp3003 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
3006 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3007 fromChannel->getName().string(), toChannel->getName().string());
3012 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3063 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1264 sp<InputChannel> fromChannel = local
1269 if (fromChannel == NULL || toChannel == NULL) {
1274 transferTouchFocus(fromChannel, toChannel)) {

Completed in 99 milliseconds