Lines Matching refs:InputChannel
102 InputChannel::InputChannel(const std::string& name, int fd) : in InputChannel() function in android::InputChannel
114 InputChannel::~InputChannel() { in ~InputChannel()
123 status_t InputChannel::openInputChannelPair(const std::string& name, in openInputChannelPair()
124 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) { in openInputChannelPair()
143 outServerChannel = new InputChannel(serverChannelName, sockets[0]); in openInputChannelPair()
147 outClientChannel = new InputChannel(clientChannelName, sockets[1]); in openInputChannelPair()
151 status_t InputChannel::sendMessage(const InputMessage* msg) { in sendMessage()
187 status_t InputChannel::receiveMessage(InputMessage* msg) { in receiveMessage()
227 sp<InputChannel> InputChannel::dup() const { in dup()
229 return fd >= 0 ? new InputChannel(getName(), fd) : NULL; in dup()
235 InputPublisher::InputPublisher(const sp<InputChannel>& channel) : in InputPublisher()
377 InputConsumer::InputConsumer(const sp<InputChannel>& channel) : in InputConsumer()