Lines Matching refs:InputChannel
103 InputChannel::InputChannel(const String8& name, int fd) : in InputChannel() function in android::InputChannel
115 InputChannel::~InputChannel() { in ~InputChannel()
124 status_t InputChannel::openInputChannelPair(const String8& name, in openInputChannelPair()
125 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) { in openInputChannelPair()
144 outServerChannel = new InputChannel(serverChannelName, sockets[0]); in openInputChannelPair()
148 outClientChannel = new InputChannel(clientChannelName, sockets[1]); in openInputChannelPair()
152 status_t InputChannel::sendMessage(const InputMessage* msg) { in sendMessage()
188 status_t InputChannel::receiveMessage(InputMessage* msg) { in receiveMessage()
228 sp<InputChannel> InputChannel::dup() const { in dup()
230 return fd >= 0 ? new InputChannel(getName(), fd) : NULL; in dup()
236 InputPublisher::InputPublisher(const sp<InputChannel>& channel) : in InputPublisher()
376 InputConsumer::InputConsumer(const sp<InputChannel>& channel) : in InputConsumer()