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
100 // --- InputChannel ---
102 InputChannel::InputChannel(const String8& name, int fd) : function in class:android::InputChannel
114 InputChannel::~InputChannel() {
123 status_t InputChannel::openInputChannelPair(const String8& name,
124 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) {
143 outServerChannel = new InputChannel(serverChannelNam
[all...]
/frameworks/native/include/input/
H A DInputTransport.h23 * The InputChannel provides a mechanism for exchanging InputMessage structures across processes.
136 * Each endpoint has its own InputChannel object that specifies its file descriptor.
140 class InputChannel : public RefBase { class in namespace:android
142 virtual ~InputChannel();
145 InputChannel(const String8& name, int fd);
152 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel);
183 sp<InputChannel> dup() const;
196 explicit InputPublisher(const sp<InputChannel>& channel);
202 inline sp<InputChannel> getChanne
[all...]

Completed in 2417 milliseconds