Home
last modified time | relevance | path

Searched refs:sendPipeFd (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/jni/
Dandroid_view_InputChannel.cpp213 int32_t sendPipeFd = dup(parcelSendPipeFd); in android_view_InputChannel_nativeReadFromParcel() local
214 if (sendPipeFd < 0) { in android_view_InputChannel_nativeReadFromParcel()
217 if (ashmemFd < 0 || receivePipeFd < 0 || sendPipeFd < 0) { in android_view_InputChannel_nativeReadFromParcel()
220 if (sendPipeFd >= 0) ::close(sendPipeFd); in android_view_InputChannel_nativeReadFromParcel()
227 receivePipeFd, sendPipeFd); in android_view_InputChannel_nativeReadFromParcel()
/frameworks/base/libs/ui/
DInputTransport.cpp55 int32_t sendPipeFd) : in InputChannel() argument
56 mName(name), mAshmemFd(ashmemFd), mReceivePipeFd(receivePipeFd), mSendPipeFd(sendPipeFd) { in InputChannel()
59 mName.string(), ashmemFd, receivePipeFd, sendPipeFd); in InputChannel()
/frameworks/base/include/ui/
DInputTransport.h57 int32_t sendPipeFd);