Home
last modified time | relevance | path

Searched refs:toChannel (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSIconViewImpl.java172 final float toChannel = Color.red(toColor); in animateGrayScale() local
179 int channel = (int) (fromChannel + (toChannel - fromChannel) * fraction); in animateGrayScale()
/frameworks/native/services/inputflinger/
DInputDispatcher.h339 const sp<InputChannel>& toChannel) = 0;
396 const sp<InputChannel>& toChannel);
DInputDispatcher.cpp3096 const sp<InputChannel>& toChannel) { in transferTouchFocus() argument
3099 fromChannel->getName().c_str(), toChannel->getName().c_str()); in transferTouchFocus()
3105 sp<InputWindowHandle> toWindowHandle = getWindowHandleLocked(toChannel); in transferTouchFocus()
3156 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel); in transferTouchFocus()
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java221 InputChannel fromChannel, InputChannel toChannel); in nativeTransferTouchFocus() argument
1531 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { in transferTouchFocus() argument
1535 if (toChannel == null) { in transferTouchFocus()
1538 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel); in transferTouchFocus()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp1489 sp<InputChannel> toChannel = in nativeTransferTouchFocus() local
1492 if (fromChannel == NULL || toChannel == NULL) { in nativeTransferTouchFocus()
1497 transferTouchFocus(fromChannel, toChannel)) { in nativeTransferTouchFocus()