Lines Matching refs:mIpc
57 if (pipe(mIpc) < 0) in TestCase()
62 if (pipe(mIpc + 2) < 0) in TestCase()
72 for (int i = 0; i < 4; ++i) close(mIpc[i]); in ~TestCase()
91 close(mIpc[READ_FROM_CHILD]); in runTest()
92 close(mIpc[WRITE_TO_CHILD]); in runTest()
110 write(mIpc[TestCase::WRITE_TO_PARENT], buffer, str - buffer); in runTest()
113 close(mIpc[WRITE_TO_PARENT]); in runTest()
114 close(mIpc[READ_FROM_PARENT]); in runTest()
119 close(mIpc[WRITE_TO_PARENT]); in runTest()
120 close(mIpc[READ_FROM_PARENT]); in runTest()
124 if (!android::waitForChildrenAndSignal(mNproc, mIpc[READ_FROM_CHILD], mIpc[WRITE_TO_CHILD])) in runTest()
132 while(read(mIpc[READ_FROM_CHILD], buffer, sizeof(buffer)) != 0) in runTest()