/aosp14/frameworks/base/core/java/android/view/ |
H A D | InputChannel.java | 35 public final class InputChannel implements Parcelable { class 46 = new Parcelable.Creator<InputChannel>() { 48 InputChannel result = new InputChannel(); 53 public InputChannel[] newArray(int size) { 54 return new InputChannel[size]; 78 public InputChannel() { in InputChannel() method in InputChannel 117 InputChannel channels[] = new InputChannel[2]; in openInputChannelPair() 120 channels[i] = new InputChannel(); in openInputChannelPair() 156 public void copyTo(InputChannel outParameter) { in copyTo() 169 public InputChannel dup() { in dup() [all …]
|
H A D | InputMonitor.java | 43 private final InputChannel mInputChannel; 99 @NonNull InputChannel inputChannel, in InputMonitor() 116 public @NonNull InputChannel getInputChannel() { in getInputChannel() 165 InputChannel inputChannel = (InputChannel) in.readTypedObject(InputChannel.CREATOR); in InputMonitor()
|
H A D | InputEventReceiver.java | 47 private InputChannel mInputChannel; 54 InputChannel inputChannel, MessageQueue messageQueue); in nativeInit() 69 public InputEventReceiver(InputChannel inputChannel, Looper looper) { in InputEventReceiver() 289 InputEventReceiver createInputEventReceiver(InputChannel inputChannel, Looper looper); in createInputEventReceiver()
|
H A D | InputEventSender.java | 42 private InputChannel mInputChannel; 46 InputChannel inputChannel, MessageQueue messageQueue); in nativeInit() 57 public InputEventSender(InputChannel inputChannel, Looper looper) { in InputEventSender()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_view_InputChannel.cpp | 49 explicit NativeInputChannel(std::unique_ptr<InputChannel> inputChannel); 52 inline std::shared_ptr<InputChannel> getInputChannel() { return mInputChannel; } in getInputChannel() 58 std::shared_ptr<InputChannel> mInputChannel; 65 NativeInputChannel::NativeInputChannel(std::unique_ptr<InputChannel> inputChannel) in NativeInputChannel() 97 std::shared_ptr<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env, in android_view_InputChannel_getInputChannel() 116 JNIEnv* env, std::unique_ptr<InputChannel> inputChannel) { in android_view_InputChannel_createInputChannel() 148 std::unique_ptr<InputChannel> serverChannel; in android_view_InputChannel_nativeOpenInputChannelPair() 149 std::unique_ptr<InputChannel> clientChannel; in android_view_InputChannel_nativeOpenInputChannelPair() 206 std::unique_ptr<InputChannel> inputChannel = std::make_unique<InputChannel>(); in android_view_InputChannel_nativeReadFromParcel() 254 std::shared_ptr<InputChannel> inputChannel = nativeInputChannel->getInputChannel(); in android_view_InputChannel_nativeDup() [all …]
|
H A D | android_view_InputChannel.h | 27 const std::shared_ptr<InputChannel>& inputChannel, 30 extern std::shared_ptr<InputChannel> android_view_InputChannel_getInputChannel( 40 JNIEnv* env, std::unique_ptr<InputChannel> inputChannel);
|
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | HandwritingEventReceiverSurface.java | 25 import android.view.InputChannel; 38 private final InputChannel mClientChannel; 43 @NonNull InputChannel inputChannel) { in HandwritingEventReceiverSurface() 98 InputChannel getInputChannel() { in getInputChannel()
|
H A D | HandwritingModeController.java | 36 import android.view.InputChannel; 124 final InputChannel channel = mInputManagerInternal.createInputChannel(name); in initializeHandwritingSpy() 389 private final InputChannel mHandwritingChannel; 392 private HandwritingSession(int requestId, InputChannel handwritingChannel, in HandwritingSession() 403 InputChannel getHandwritingChannel() { in getHandwritingChannel()
|
/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
H A D | InputConsumerController.java | 30 import android.view.InputChannel; 66 InputEventReceiver(InputChannel inputChannel, Looper looper, in InputEventReceiver() 140 final InputChannel inputChannel = new InputChannel(); in registerInputConsumer()
|
H A D | InputChannelCompat.java | 23 import android.view.InputChannel; 68 public InputEventReceiver(InputChannel inputChannel, Looper looper, in InputEventReceiver()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/ |
H A D | PipInputConsumer.java | 28 import android.view.InputChannel; 66 InputEventReceiver(InputChannel inputChannel, Looper looper, in InputEventReceiver() 139 final InputChannel inputChannel = new InputChannel(); in registerInputConsumer()
|
/aosp14/frameworks/base/tests/Input/src/com/android/test/input/ |
H A D | SpyInputEventSenderAndReceiver.kt | 21 import android.view.InputChannel 34 class SpyInputEventReceiver(channel: InputChannel, looper: Looper) : 52 class SpyInputEventSender(channel: InputChannel, looper: Looper) :
|
H A D | InputEventSenderAndReceiverTest.kt | 21 import android.view.InputChannel 49 private class CrashingInputEventReceiver(channel: InputChannel, looper: Looper) : 70 val channels = InputChannel.openInputChannelPair("TestChannel") 134 val channels = InputChannel.openInputChannelPair("TestChannel2")
|
H A D | UnresponsiveGestureMonitorActivity.kt | 24 import android.view.InputChannel 29 class UnresponsiveReceiver(channel: InputChannel, looper: Looper) :
|
/aosp14/frameworks/base/core/java/com/android/internal/inputmethod/ |
H A D | IInputMethod.aidl | 21 import android.view.InputChannel; 68 void createSession(in InputChannel channel, IInputMethodSessionCallback callback); in createSession() 84 void startStylusHandwriting(int requestId, in InputChannel channel, in startStylusHandwriting()
|
H A D | InputBindResult.java | 31 import android.view.InputChannel; 195 public final InputChannel channel; 248 InputChannel channel, String id, int sequence, in InputBindResult() 284 channel = InputChannel.CREATOR.createFromParcel(source); in InputBindResult()
|
/aosp14/frameworks/base/services/core/java/com/android/server/input/ |
H A D | GestureMonitorSpyWindow.java | 24 import android.view.InputChannel; 44 final InputChannel mClientChannel; 48 SurfaceControl sc, InputChannel inputChannel) { in GestureMonitorSpyWindow()
|
H A D | NativeInputManagerService.java | 27 import android.view.InputChannel; 57 InputChannel createInputChannel(String name); in createInputChannel() 59 InputChannel createInputMonitor(int displayId, String name, int pid); in createInputMonitor() 292 public native InputChannel createInputChannel(String name); in createInputChannel() 295 public native InputChannel createInputMonitor(int displayId, String name, int pid); in createInputMonitor()
|
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | TaskPositioningControllerTests.java | 35 import android.view.InputChannel; 64 any(InputChannel.class), in setUp() 65 any(InputChannel.class), in setUp() 70 mWindow.mInputChannel = new InputChannel(); in setUp()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubblesNavBarInputEventReceiver.java | 22 import android.view.InputChannel; 33 BubblesNavBarInputEventReceiver(InputChannel inputChannel, in BubblesNavBarInputEventReceiver()
|
/aosp14/frameworks/base/media/java/android/media/tv/interactive/ |
H A D | ITvInteractiveAppService.aidl | 23 import android.view.InputChannel; 33 void createSession(in InputChannel channel, in ITvInteractiveAppSessionCallback callback, in createSession()
|
/aosp14/frameworks/base/apct-tests/perftests/windowmanager/src/android/wm/ |
H A D | WindowAddRemovePerfTest.java | 30 import android.view.InputChannel; 105 final InputChannel inputChannel = new InputChannel(); in runBenchmark()
|
/aosp14/frameworks/base/media/java/android/media/tv/ |
H A D | ITvInputService.aidl | 24 import android.view.InputChannel; 33 oneway void createSession(in InputChannel channel, in ITvInputSessionCallback callback, in createSession()
|
/aosp14/frameworks/base/core/java/android/inputmethodservice/ |
H A D | IInputMethodWrapper.java | 33 import android.view.InputChannel; 115 final InputChannel mChannel; 118 InputMethodSessionCallbackWrapper(Context context, InputChannel channel, in InputMethodSessionCallbackWrapper() 211 mContext, (InputChannel) args.arg1, in executeMessage() 282 inputMethod.startStylusHandwriting(msg.arg1, (InputChannel) args.arg1, in executeMessage() 411 public void createSession(InputChannel channel, IInputMethodSessionCallback callback) { in createSession() 476 public void startStylusHandwriting(int requestId, @NonNull InputChannel channel, in startStylusHandwriting()
|
H A D | IInputMethodSessionWrapper.java | 27 import android.view.InputChannel; 64 InputChannel mChannel; 68 InputMethodSession inputMethodSession, InputChannel channel) { in IInputMethodSessionWrapper() 238 public ImeInputEventReceiver(InputChannel inputChannel, Looper looper) { in ImeInputEventReceiver()
|