Lines Matching refs:m_pPipeRef

43 	m_pPipeRef= 0;  in OPipe()
52 m_pPipeRef = in OPipe()
57 VOS_POSTCOND(m_pPipeRef != 0, "OPipe(): new failed.\n"); in OPipe()
58 VOS_POSTCOND((*m_pPipeRef)(), "OPipe(): creation of pipe failed!\n"); in OPipe()
69 m_pPipeRef= in OPipe()
74 VOS_POSTCOND(m_pPipeRef != 0, "OPipe(): new failed.\n"); in OPipe()
75 VOS_POSTCOND((*m_pPipeRef)(), "OPipe(): creation of pipe failed!\n"); in OPipe()
85 VOS_ASSERT(pipe.m_pPipeRef != 0); in OPipe()
87 m_pPipeRef= pipe.m_pPipeRef; in OPipe()
89 m_pPipeRef->acquire(); in OPipe()
97 m_pPipeRef = new PipeRef(Pipe); in OPipe()
115 if ((m_pPipeRef) && (m_pPipeRef->release() == 0)) in create()
117 osl_releasePipe((*m_pPipeRef)()); in create()
118 delete m_pPipeRef; in create()
119 m_pPipeRef= 0; in create()
122 m_pPipeRef= in create()
127 VOS_POSTCOND(m_pPipeRef != 0, "OPipe(): new failed.\n"); in create()
129 return (*m_pPipeRef)() != 0; in create()
140 if ((m_pPipeRef) && (m_pPipeRef->release() == 0)) in create()
142 osl_releasePipe((*m_pPipeRef)()); in create()
143 delete m_pPipeRef; in create()
144 m_pPipeRef= 0; in create()
147 m_pPipeRef= in create()
152 VOS_POSTCOND(m_pPipeRef != 0, "OPipe(): new failed.\n"); in create()
154 return (*m_pPipeRef)() != 0; in create()
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 =()
168 if ((m_pPipeRef) && (m_pPipeRef->release() == 0)) in operator =()
170 osl_releasePipe((*m_pPipeRef)()); in operator =()
171 delete m_pPipeRef; in operator =()
172 m_pPipeRef= 0; in operator =()
175 m_pPipeRef= pipe.m_pPipeRef; in operator =()
177 m_pPipeRef->acquire(); in operator =()
187 VOS_ASSERT(m_pPipeRef); in operator oslPipe()
188 return (*m_pPipeRef)(); in operator oslPipe()
196 return m_pPipeRef != 0 && (*m_pPipeRef)() != 0; in isValid()
205 if (m_pPipeRef && (m_pPipeRef->release() == 0)) in close()
207 osl_releasePipe((*m_pPipeRef)()); in close()
208 delete m_pPipeRef; in close()
210 m_pPipeRef= 0; in close()
220 Connection = osl_acceptPipe((*m_pPipeRef)()); in accept()
235 return osl_receivePipe((*m_pPipeRef)(), in recv()
249 return osl_sendPipe((*m_pPipeRef)(), in send()
261 if (m_pPipeRef) in getError()
262 return (TPipeError)osl_getLastPipeError((*m_pPipeRef)()); in getError()
297 VOS_ASSERT(pipe.m_pPipeRef != 0); in OStreamPipe()
299 m_pPipeRef= pipe.m_pPipeRef; in OStreamPipe()
301 m_pPipeRef->acquire(); in OStreamPipe()
318 if (m_pPipeRef && (m_pPipeRef->release() == 0)) in operator =()
320 osl_releasePipe((*m_pPipeRef)()); in operator =()
321 delete m_pPipeRef; in operator =()
322 m_pPipeRef= 0; in operator =()
325 m_pPipeRef= new PipeRef(Pipe); in operator =()
327 VOS_POSTCOND(m_pPipeRef != 0, "OPipe(): new failed.\n"); in operator =()
347 VOS_ASSERT(m_pPipeRef && (*m_pPipeRef)()); in read()
355 RetVal= osl_receivePipe((*m_pPipeRef)(), in read()
378 VOS_ASSERT(m_pPipeRef && (*m_pPipeRef)()); in write()
387 RetVal= osl_sendPipe((*m_pPipeRef)(), in write()