Lines Matching refs:ngLastError
64 static APIRET ngLastError; variable
141 ngLastError = DosOpen( (PCSZ)strPipeNameBuffer, in osl_createPipe()
147 if (ngLastError == ERROR_PIPE_BUSY) in osl_createPipe()
156 ngLastError = NO_ERROR; in osl_createPipe()
168 ngLastError = DosCreateMutexSem( (PCSZ)strPipeNameBuffer, &(pPipe->m_NamedObject), 0, TRUE ); in osl_createPipe()
169 if (ngLastError) in osl_createPipe()
176 ngLastError = DosCreateNPipe( (PCSZ)strPipeNameBuffer, in osl_createPipe()
187 ngLastError = ERROR_INVALID_PARAMETER; in osl_createPipe()
191 if (ngLastError) in osl_createPipe()
196 ngLastError ); in osl_createPipe()
226 ngLastError = DosDupHandle( pPipe->hPipe, &(pNewPipe->hPipe) ); in osl_copyPipe()
229 if (ngLastError) in osl_copyPipe()
232 ngLastError ); in osl_copyPipe()
324 OSL_TRACE( "osl_acceptPipe failed creating new instance.\n", ngLastError ); in osl_acceptPipe()
455 rc = ngLastError; in osl_getLastPipeError()