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

/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1426 sp<InputChannel> fromChannel = local
1431 if (fromChannel == NULL || toChannel == NULL) {
1436 transferTouchFocus(fromChannel, toChannel)) {
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java223 InputChannel fromChannel, InputChannel toChannel);
1581 * @param fromChannel The channel of a window that currently has touch focus.
1587 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1588 if (fromChannel == null) {
1589 throw new IllegalArgumentException("fromChannel must not be null.");
1594 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
222 nativeTransferTouchFocus(long ptr, InputChannel fromChannel, InputChannel toChannel) argument
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp3035 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
3038 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3039 fromChannel->getName().string(), toChannel->getName().string());
3044 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3095 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);

Completed in 111 milliseconds