Home
last modified time | relevance | path

Searched refs:InputChannel (Results 1 – 25 of 82) sorted by relevance

1234

/aosp14/frameworks/base/core/java/android/view/
H A DInputChannel.java35 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 DInputMonitor.java43 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 DInputEventReceiver.java47 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 DInputEventSender.java42 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 Dandroid_view_InputChannel.cpp49 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 Dandroid_view_InputChannel.h27 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 DHandwritingEventReceiverSurface.java25 import android.view.InputChannel;
38 private final InputChannel mClientChannel;
43 @NonNull InputChannel inputChannel) { in HandwritingEventReceiverSurface()
98 InputChannel getInputChannel() { in getInputChannel()
H A DHandwritingModeController.java36 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 DInputConsumerController.java30 import android.view.InputChannel;
66 InputEventReceiver(InputChannel inputChannel, Looper looper, in InputEventReceiver()
140 final InputChannel inputChannel = new InputChannel(); in registerInputConsumer()
H A DInputChannelCompat.java23 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 DPipInputConsumer.java28 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 DSpyInputEventSenderAndReceiver.kt21 import android.view.InputChannel
34 class SpyInputEventReceiver(channel: InputChannel, looper: Looper) :
52 class SpyInputEventSender(channel: InputChannel, looper: Looper) :
H A DInputEventSenderAndReceiverTest.kt21 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 DUnresponsiveGestureMonitorActivity.kt24 import android.view.InputChannel
29 class UnresponsiveReceiver(channel: InputChannel, looper: Looper) :
/aosp14/frameworks/base/core/java/com/android/internal/inputmethod/
H A DIInputMethod.aidl21 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 DInputBindResult.java31 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 DGestureMonitorSpyWindow.java24 import android.view.InputChannel;
44 final InputChannel mClientChannel;
48 SurfaceControl sc, InputChannel inputChannel) { in GestureMonitorSpyWindow()
H A DNativeInputManagerService.java27 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 DTaskPositioningControllerTests.java35 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 DBubblesNavBarInputEventReceiver.java22 import android.view.InputChannel;
33 BubblesNavBarInputEventReceiver(InputChannel inputChannel, in BubblesNavBarInputEventReceiver()
/aosp14/frameworks/base/media/java/android/media/tv/interactive/
H A DITvInteractiveAppService.aidl23 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 DWindowAddRemovePerfTest.java30 import android.view.InputChannel;
105 final InputChannel inputChannel = new InputChannel(); in runBenchmark()
/aosp14/frameworks/base/media/java/android/media/tv/
H A DITvInputService.aidl24 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 DIInputMethodWrapper.java33 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 DIInputMethodSessionWrapper.java27 import android.view.InputChannel;
64 InputChannel mChannel;
68 InputMethodSession inputMethodSession, InputChannel channel) { in IInputMethodSessionWrapper()
238 public ImeInputEventReceiver(InputChannel inputChannel, Looper looper) { in ImeInputEventReceiver()

1234