Lines Matching refs:pipe
81 OPipe::OPipe(const OPipe& pipe) : in OPipe() argument
85 VOS_ASSERT(pipe.m_pPipeRef != 0); in OPipe()
87 m_pPipeRef= pipe.m_pPipeRef; in OPipe()
160 OPipe& OPipe::operator= (const OPipe& pipe) in operator =() argument
162 VOS_PRECOND(pipe.m_pPipeRef != 0, "OPipe::operator=: tried to assign an empty/invalid pipe\n"); in operator =()
164 if (m_pPipeRef == pipe.m_pPipeRef) in operator =()
175 m_pPipeRef= pipe.m_pPipeRef; in operator =()
294 OStreamPipe::OStreamPipe(const OStreamPipe& pipe) : in OStreamPipe() argument
297 VOS_ASSERT(pipe.m_pPipeRef != 0); in OStreamPipe()
299 m_pPipeRef= pipe.m_pPipeRef; in OStreamPipe()
336 OStreamPipe& OStreamPipe::operator= (const OPipe& pipe) in operator =() argument
338 OPipe::operator= ( pipe ); in operator =()