Searched defs:InputChannel (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
H A DInputChannel.java27 * from an InputChannel at a time.
30 public final class InputChannel implements Parcelable { class in inherits:Parcelable
31 private static final String TAG = "InputChannel";
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[siz
66 public InputChannel() { method in class:InputChannel
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp13 // Log debug messages whenever InputChannel objects are created/destroyed
97 // --- InputChannel ---
99 InputChannel::InputChannel(const String8& name, int fd) : function in class:android::InputChannel
111 InputChannel::~InputChannel() {
120 status_t InputChannel::openInputChannelPair(const String8& name,
121 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) {
140 outServerChannel = new InputChannel(serverChannelNam
[all...]
/frameworks/native/include/input/
H A DInputTransport.h23 * The InputChannel provides a mechanism for exchanging InputMessage structures across processes.
133 * Each endpoint has its own InputChannel object that specifies its file descriptor.
137 class InputChannel : public RefBase { class in namespace:android
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> getChanne
[all...]

Completed in 36 milliseconds