/frameworks/base/core/java/android/view/ |
D | InputChannel.java | 30 public final class InputChannel implements Parcelable { class 35 public static final Parcelable.Creator<InputChannel> CREATOR 36 = new Parcelable.Creator<InputChannel>() { 37 public InputChannel createFromParcel(Parcel source) { 38 InputChannel result = new InputChannel(); 43 public InputChannel[] newArray(int size) { 44 return new InputChannel[size]; 51 private static native InputChannel[] nativeOpenInputChannelPair(String name); in nativeOpenInputChannelPair() 54 private native void nativeTransferTo(InputChannel other); in nativeTransferTo() 57 private native void nativeDup(InputChannel target); in nativeDup() [all …]
|
D | InputEventReceiver.java | 41 private InputChannel mInputChannel; 48 InputChannel inputChannel, MessageQueue messageQueue); in nativeInit() 60 public InputEventReceiver(InputChannel inputChannel, Looper looper) { in InputEventReceiver() 196 InputChannel inputChannel, Looper looper); in createInputEventReceiver()
|
D | InputEventSender.java | 40 private InputChannel mInputChannel; 44 InputChannel inputChannel, MessageQueue messageQueue); in nativeInit() 55 public InputEventSender(InputChannel inputChannel, Looper looper) { in InputEventSender()
|
D | IWindowSession.aidl | 25 import android.view.InputChannel; 40 out InputChannel outInputChannel); in add() 43 out Rect outStableInsets, out InputChannel outInputChannel); in addToDisplay()
|
D | InputChannel.aidl | 20 parcelable InputChannel;
|
/frameworks/native/libs/input/tests/ |
D | InputChannel_test.cpp | 44 sp<InputChannel> inputChannel = new InputChannel(String8("channel name"), pipe.sendFd); in TEST_F() 61 sp<InputChannel> serverChannel, clientChannel; in TEST_F() 63 status_t result = InputChannel::openInputChannelPair(String8("channel name"), in TEST_F() 112 sp<InputChannel> serverChannel, clientChannel; in TEST_F() 114 status_t result = InputChannel::openInputChannelPair(String8("channel name"), in TEST_F() 126 sp<InputChannel> serverChannel, clientChannel; in TEST_F() 128 status_t result = InputChannel::openInputChannelPair(String8("channel name"), in TEST_F() 142 sp<InputChannel> serverChannel, clientChannel; in TEST_F() 144 status_t result = InputChannel::openInputChannelPair(String8("channel name"), in TEST_F()
|
/frameworks/native/include/input/ |
D | InputTransport.h | 137 class InputChannel : public RefBase { 139 virtual ~InputChannel(); 142 InputChannel(const String8& name, int fd); 149 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel); 180 sp<InputChannel> dup() const; 193 explicit InputPublisher(const sp<InputChannel>& channel); 199 inline sp<InputChannel> getChannel() { return mChannel; } in getChannel() 263 sp<InputChannel> mChannel; 272 explicit InputConsumer(const sp<InputChannel>& channel); 278 inline sp<InputChannel> getChannel() { return mChannel; } in getChannel() [all …]
|
/frameworks/base/core/jni/ |
D | android_view_InputChannel.cpp | 44 NativeInputChannel(const sp<InputChannel>& inputChannel); 47 inline sp<InputChannel> getInputChannel() { return mInputChannel; } in getInputChannel() 53 sp<InputChannel> mInputChannel; 60 NativeInputChannel::NativeInputChannel(const sp<InputChannel>& inputChannel) : in NativeInputChannel() 94 sp<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env, jobject inputChannelObj) { in android_view_InputChannel_getInputChannel() 127 sp<InputChannel> serverChannel; in android_view_InputChannel_nativeOpenInputChannelPair() 128 sp<InputChannel> clientChannel; in android_view_InputChannel_nativeOpenInputChannelPair() 129 status_t result = InputChannel::openInputChannelPair(name, serverChannel, clientChannel); in android_view_InputChannel_nativeOpenInputChannelPair() 212 InputChannel* inputChannel = new InputChannel(name, dupFd); in android_view_InputChannel_nativeReadFromParcel() 227 sp<InputChannel> inputChannel = nativeInputChannel->getInputChannel(); in android_view_InputChannel_nativeWriteToParcel()
|
D | android_view_InputChannel.h | 27 const sp<InputChannel>& inputChannel, void* data); 29 extern sp<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env,
|
D | android_view_InputEventSender.cpp | 52 jobject senderWeak, const sp<InputChannel>& inputChannel, 80 jobject senderWeak, const sp<InputChannel>& inputChannel, in NativeInputEventSender() 235 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env, in nativeInit()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | InputBindResult.java | 21 import android.view.InputChannel; 38 public final InputChannel channel; 56 public InputBindResult(IInputMethodSession _method, InputChannel _channel, in InputBindResult() 68 channel = InputChannel.CREATOR.createFromParcel(source); in InputBindResult()
|
D | IInputMethod.aidl | 21 import android.view.InputChannel; 45 void createSession(in InputChannel channel, IInputSessionCallback callback); in createSession()
|
/frameworks/native/services/inputflinger/ |
D | InputDispatcher.h | 145 sp<InputChannel> inputChannel; 333 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel, 334 const sp<InputChannel>& toChannel) = 0; 341 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, 343 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0; 390 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel, 391 const sp<InputChannel>& toChannel); 393 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, 395 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel); 801 sp<InputChannel> inputChannel; // never null [all …]
|
D | InputWindow.h | 114 sp<InputChannel> inputChannel; 166 inline sp<InputChannel> getInputChannel() const { in getInputChannel()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | FakeWindowImpl.java | 25 import android.view.InputChannel; 31 final InputChannel mServerChannel, mClientChannel; 45 InputChannel[] channels = InputChannel.openInputChannelPair(name); in FakeWindowImpl()
|
D | PointerEventDispatcher.java | 19 import android.view.InputChannel; 34 public PointerEventDispatcher(InputChannel inputChannel) { in PointerEventDispatcher()
|
/frameworks/base/media/java/android/media/tv/ |
D | ITvInputService.aidl | 23 import android.view.InputChannel; 32 void createSession(in InputChannel channel, ITvInputSessionCallback callback, in createSession()
|
D | ITvInputClient.aidl | 24 import android.view.InputChannel; 32 void onSessionCreated(in String inputId, IBinder token, in InputChannel channel, int seq); in onSessionCreated()
|
D | ITvInputSessionWrapper.java | 27 import android.view.InputChannel; 64 private InputChannel mChannel; 68 InputChannel channel) { in ITvInputSessionWrapper() 246 public TvInputEventReceiver(InputChannel inputChannel, Looper looper) { in TvInputEventReceiver()
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | InputWindowHandle.java | 20 import android.view.InputChannel; 40 public InputChannel inputChannel;
|
D | InputManagerService.java | 76 import android.view.InputChannel; 173 private static native void nativeRegisterInputChannel(long ptr, InputChannel inputChannel, in nativeRegisterInputChannel() 175 private static native void nativeUnregisterInputChannel(long ptr, InputChannel inputChannel); in nativeUnregisterInputChannel() 186 InputChannel fromChannel, InputChannel toChannel); in nativeTransferTouchFocus() 447 public InputChannel monitorInput(String inputChannelName) { in monitorInput() 452 InputChannel[] inputChannels = InputChannel.openInputChannelPair(inputChannelName); in monitorInput() 464 public void registerInputChannel(InputChannel inputChannel, in registerInputChannel() 477 public void unregisterInputChannel(InputChannel inputChannel) { in unregisterInputChannel() 1201 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) { in transferTouchFocus()
|
/frameworks/native/libs/input/ |
D | InputTransport.cpp | 99 InputChannel::InputChannel(const String8& name, int fd) : in InputChannel() function in android::InputChannel 111 InputChannel::~InputChannel() { in ~InputChannel() 120 status_t InputChannel::openInputChannelPair(const String8& name, in openInputChannelPair() 121 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) { in openInputChannelPair() 140 outServerChannel = new InputChannel(serverChannelName, sockets[0]); in openInputChannelPair() 144 outClientChannel = new InputChannel(clientChannelName, sockets[1]); in openInputChannelPair() 148 status_t InputChannel::sendMessage(const InputMessage* msg) { in sendMessage() 184 status_t InputChannel::receiveMessage(InputMessage* msg) { in receiveMessage() 224 sp<InputChannel> InputChannel::dup() const { in dup() 226 return fd >= 0 ? new InputChannel(getName(), fd) : NULL; in dup() [all …]
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | IInputMethodSessionWrapper.java | 30 import android.view.InputChannel; 58 InputChannel mChannel; 62 InputMethodSession inputMethodSession, InputChannel channel) { in IInputMethodSessionWrapper() 216 public ImeInputEventReceiver(InputChannel inputChannel, Looper looper) { in ImeInputEventReceiver()
|
D | IInputMethodWrapper.java | 35 import android.view.InputChannel; 84 final InputChannel mChannel; 87 InputMethodSessionCallbackWrapper(Context context, InputChannel channel, in InputMethodSessionCallbackWrapper() 190 mContext, (InputChannel)args.arg1, in executeMessage() 273 public void createSession(InputChannel channel, IInputSessionCallback callback) { in createSession()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeWindowSession.java | 29 import android.view.InputChannel; 42 InputChannel outInputchannel) in add() 50 Rect arg3, Rect arg4, InputChannel outInputchannel) in addToDisplay()
|