HomeSort by relevance Sort by last modified time
    Searched refs:receivePipeFd (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/jni/
android_view_InputChannel.cpp 208 int32_t receivePipeFd = dup(parcelReceivePipeFd);
209 if (receivePipeFd < 0) {
217 if (ashmemFd < 0 || receivePipeFd < 0 || sendPipeFd < 0) {
219 if (receivePipeFd >= 0) ::close(receivePipeFd);
227 receivePipeFd, sendPipeFd);
  /frameworks/base/include/ui/
InputTransport.h 56 InputChannel(const String8& name, int32_t ashmemFd, int32_t receivePipeFd,
81 * (Should only call this after poll() indicates that the receivePipeFd has available input.)
  /frameworks/base/libs/ui/
InputTransport.cpp 54 InputChannel::InputChannel(const String8& name, int32_t ashmemFd, int32_t receivePipeFd,
56 mName(name), mAshmemFd(ashmemFd), mReceivePipeFd(receivePipeFd), mSendPipeFd(sendPipeFd) {
58 LOGD("Input channel constructed: name='%s', ashmemFd=%d, receivePipeFd=%d, sendPipeFd=%d",
59 mName.string(), ashmemFd, receivePipeFd, sendPipeFd);
73 LOGD("Input channel destroyed: name='%s', ashmemFd=%d, receivePipeFd=%d, sendPipeFd=%d",

Completed in 247 milliseconds