Searched refs:pipeFds (Results 1 – 2 of 2) sorted by relevance
188 int pipeFds[2]; in createQueue() local189 if (pipe(pipeFds)) { in createQueue()193 fcntl(pipeFds[0], F_SETFL, O_NONBLOCK); in createQueue()194 fcntl(pipeFds[1], F_SETFL, O_NONBLOCK); in createQueue()195 return new InputQueue(inputQueueObj, looper, pipeFds[0], pipeFds[1]); in createQueue()
191 FileDescriptor[] pipeFds = Os.pipe2(O_CLOEXEC); in runOnce() local192 childPipeFd = pipeFds[1]; in runOnce()193 serverPipeFd = pipeFds[0]; in runOnce()