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

  /frameworks/base/core/jni/
android_view_InputChannel.cpp 213 int32_t sendPipeFd = dup(parcelSendPipeFd);
214 if (sendPipeFd < 0) {
217 if (ashmemFd < 0 || receivePipeFd < 0 || sendPipeFd < 0) {
220 if (sendPipeFd >= 0) ::close(sendPipeFd);
227 receivePipeFd, sendPipeFd);
  /frameworks/base/include/ui/
InputTransport.h 57 int32_t sendPipeFd);
  /frameworks/base/libs/ui/
InputTransport.cpp 55 int32_t sendPipeFd) :
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 620 milliseconds