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

/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1428 sp<InputChannel> toChannel = 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);
1582 * @param toChannel The channel of the window that should receive touch focus in
1587 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1591 if (toChannel == null) {
1592 throw new IllegalArgumentException("toChannel 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.cpp3036 const sp<InputChannel>& toChannel) {
3038 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3039 fromChannel->getName().string(), toChannel->getName().string());
3045 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel);
3096 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
3035 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument

Completed in 158 milliseconds