Searched refs:fromChannel (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSIconViewImpl.java143 final float fromChannel = Color.red(fromColor);
152 int channel = (int) (fromChannel + (toChannel - fromChannel) * fraction);
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h339 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
396 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
H A DInputDispatcher.cpp3035 bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel, argument
3038 ALOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3039 fromChannel->getName().string(), toChannel->getName().string());
3044 sp<InputWindowHandle> fromWindowHandle = getWindowHandleLocked(fromChannel);
3095 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1426 sp<InputChannel> fromChannel = 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);
1581 * @param fromChannel The channel of a window that currently has touch focus.
1587 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { argument
1588 if (fromChannel == null) {
1589 throw new IllegalArgumentException("fromChannel must not be null.");
1594 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
222 nativeTransferTouchFocus(long ptr, InputChannel fromChannel, InputChannel toChannel) argument

Completed in 429 milliseconds