Lines Matching refs:result
197 s32 result; in DoMPCommunication() local
199 result = MPDSInit( &sDSContext, &sMpdsConfig ); in DoMPCommunication()
200 if ( result < 0 ) in DoMPCommunication()
202 OSReport( "MPDSInit returns %08x\n", result ); in DoMPCommunication()
206 result = MPDSSetupPortConfig( &sDSContext, &sMpConfig ); in DoMPCommunication()
207 if ( result < 0 ) in DoMPCommunication()
209 OSReport( "MPDSSetupPortConfig returns %08x\n", result ); in DoMPCommunication()
214 result = MPStartup( &sMpConfig ); in DoMPCommunication()
215 if( result != MP_RESULT_OK ) in DoMPCommunication()
217 OSReport( "MPStartup returns %08x\n", result ); in DoMPCommunication()
269 result = MPDSTryStep( &sDSContext, frameData, &recvDataSet ); in DoMPCommunication()
271 if( result == MP_RESULT_OK ) in DoMPCommunication()
321 else if ( result == MP_RESULT_NO_DATA ) in DoMPCommunication()
347 OSReport("MPDSTryStep failed: %08x\n", result); in DoMPCommunication()