Home
last modified time | relevance | path

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

/system/media/audio_utils/include/audio_utils/
DFdToString.h49 const int status = pipe2(mPipeFd, O_CLOEXEC); in mPrefix()
51 mOutput = std::async(std::launch::async, reader, mPipeFd[0], mTimeoutTimeNs, mPrefix); in mPrefix()
57 for (auto &fd : mPipeFd) { in ~FdToString()
72 return mPipeFd[1]; in fd()
83 if (mPipeFd[1] >= 0) { in getStringAndClose()
84 close(mPipeFd[1]); in getStringAndClose()
85 mPipeFd[1] = -1; in getStringAndClose()
131 int mPipeFd[2] = {-1, -1}; variable