Lines Matching refs:commonResult
45 MICResult commonResult; // For saving asynchronous function processing results member
185 micWork.commonResult = MIC_DoSamplingAsync(type, buf, MicGetResultCallback, NULL); in MIC_DoSampling()
186 if (micWork.commonResult == MIC_RESULT_SUCCESS) in MIC_DoSampling()
190 return micWork.commonResult; in MIC_DoSampling()
311 micWork.commonResult = MIC_StartAutoSamplingAsync(param, MicGetResultCallback, NULL); in MIC_StartAutoSampling()
312 if (micWork.commonResult == MIC_RESULT_SUCCESS) in MIC_StartAutoSampling()
316 return micWork.commonResult; in MIC_StartAutoSampling()
369 micWork.commonResult = MIC_StopAutoSamplingAsync(MicGetResultCallback, NULL); in MIC_StopAutoSampling()
370 if (micWork.commonResult == MIC_RESULT_SUCCESS) in MIC_StopAutoSampling()
374 return micWork.commonResult; in MIC_StopAutoSampling()
433 micWork.commonResult = MIC_AdjustAutoSamplingAsync(rate, MicGetResultCallback, NULL); in MIC_AdjustAutoSampling()
434 if (micWork.commonResult == MIC_RESULT_SUCCESS) in MIC_AdjustAutoSampling()
438 return micWork.commonResult; in MIC_AdjustAutoSampling()
855 micWork.commonResult = result; in MicGetResultCallback()