Searched refs:toChannel (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);
1196 * @param toChannel The channel of the window that should receive touch focus in
1201 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1205 if (toChannel == null) {
1206 throw new IllegalArgumentException("toChannel 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.h334 const sp<InputChannel>& toChannel) = 0;
391 const sp<InputChannel>& toChannel);
H A DInputDispatcher.cpp2979 const sp<InputChannel>& toChannel) {
2981 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
2982 fromChannel->getName().string(), toChannel->getName().string());
2988 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel);
3039 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
2978 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1240 sp<InputChannel> toChannel = local
1243 if (fromChannel == NULL || toChannel == NULL) {
1248 transferTouchFocus(fromChannel, toChannel)) {

Completed in 93 milliseconds