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
67 public InputChannel() { method in class:InputChannel
[all...]
/frameworks/base/libs/ui/
H A DInputTransport.cpp13 // Log debug messages whenever InputChannel objects are created/destroyed
42 // --- InputChannel ---
44 InputChannel::InputChannel(const String8& name, int32_t ashmemFd, int32_t receivePipeFd, function in class:android::InputChannel
61 InputChannel::~InputChannel() {
72 status_t InputChannel::openInputChannelPair(const String8& name,
73 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) {
110 outServerChannel = new InputChannel(serverChannelNam
[all...]
/frameworks/base/include/ui/
H A DInputTransport.h29 * over an InputChannel and sending synchronization signals. The InputDispatcher and InputQueue
47 * Each endpoint has its own InputChannel object that specifies its own file descriptors.
51 class InputChannel : public RefBase { class in namespace:android
53 virtual ~InputChannel();
56 InputChannel(const String8& name, int32_t ashmemFd, int32_t receivePipeFd,
65 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel);
172 explicit InputPublisher(const sp<InputChannel>& channel);
178 inline sp<InputChannel> getChannel() { return mChannel; }
261 sp<InputChannel> mChanne
[all...]

Completed in 143 milliseconds