Lines Matching refs:ngLastError
62 static APIRET ngLastError; variable
139 ngLastError = DosOpen( (PCSZ)strPipeNameBuffer, in osl_createPipe()
145 if (ngLastError == ERROR_PIPE_BUSY) in osl_createPipe()
154 ngLastError = NO_ERROR; in osl_createPipe()
166 … ngLastError = DosCreateMutexSem( (PCSZ)strPipeNameBuffer, &(pPipe->m_NamedObject), 0, TRUE ); in osl_createPipe()
167 if (ngLastError) in osl_createPipe()
174 ngLastError = DosCreateNPipe( (PCSZ)strPipeNameBuffer, in osl_createPipe()
185 ngLastError = ERROR_INVALID_PARAMETER; in osl_createPipe()
189 if (ngLastError) in osl_createPipe()
194 ngLastError ); in osl_createPipe()
224 ngLastError = DosDupHandle( pPipe->hPipe, &(pNewPipe->hPipe) ); in osl_copyPipe()
227 if (ngLastError) in osl_copyPipe()
230 ngLastError ); in osl_copyPipe()
322 OSL_TRACE( "osl_acceptPipe failed creating new instance.\n", ngLastError ); in osl_acceptPipe()
453 rc = ngLastError; in osl_getLastPipeError()