Searched defs:toChannel (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/services/java/com/android/server/input/ |
H A D | InputManagerService.java | 172 InputChannel fromChannel, InputChannel toChannel); 1008 * @param toChannel The channel of the window that should receive touch focus in 1013 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument 1017 if (toChannel == null) { 1018 throw new IllegalArgumentException("toChannel must not be null."); 1020 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel); 171 nativeTransferTouchFocus(int ptr, InputChannel fromChannel, InputChannel toChannel) argument
|
/frameworks/base/services/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 1239 sp<InputChannel> toChannel = local 1242 if (fromChannel == NULL || toChannel == NULL) { 1247 transferTouchFocus(fromChannel, toChannel);
|
/frameworks/base/services/input/ |
H A D | InputDispatcher.cpp | 2920 const sp<InputChannel>& toChannel) { 2922 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s", 2923 fromChannel->getName().string(), toChannel->getName().string()); 2929 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel); 2970 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel); 2919 transferTouchFocus(const sp<InputChannel>& fromChannel, const sp<InputChannel>& toChannel) argument
|
Completed in 156 milliseconds