Searched defs:fromChannel (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/services/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 1205 sp<InputChannel> fromChannel = local 1210 if (fromChannel == NULL || toChannel == NULL) { 1215 transferTouchFocus(fromChannel, toChannel);
|
/frameworks/base/services/java/com/android/server/input/ |
H A D | InputManagerService.java | 179 InputChannel fromChannel, InputChannel toChannel); 1065 * @param fromChannel The channel of a window that currently has touch focus. 1071 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument 1072 if (fromChannel == null) { 1073 throw new IllegalArgumentException("fromChannel must not be null."); 1078 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel); 178 nativeTransferTouchFocus(int ptr, InputChannel fromChannel, InputChannel toChannel) argument
|
/frameworks/base/services/input/ |
H A D | InputDispatcher.cpp | 2975 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument 2978 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s", 2979 fromChannel->getName().string(), toChannel->getName().string()); 2984 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel); 3031 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
|
Completed in 55 milliseconds