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()
213 FileDescriptor[] pipeFds = Os.pipe2(O_CLOEXEC); in processCommand() local214 childPipeFd = pipeFds[1]; in processCommand()215 serverPipeFd = pipeFds[0]; in processCommand()