Lines Matching refs:RetCode
122 RetCode::SUCCESS, in setParameterSpecific()
128 RetCode::SUCCESS, in setParameterSpecific()
134 RetCode::SUCCESS, in setParameterSpecific()
140 RetCode::SUCCESS, in setParameterSpecific()
146 RetCode::SUCCESS, in setParameterSpecific()
152 RetCode::SUCCESS, in setParameterSpecific()
158 RetCode::SUCCESS, in setParameterSpecific()
164 RetCode::SUCCESS, in setParameterSpecific()
170 RetCode::SUCCESS, in setParameterSpecific()
263 RetCode DynamicsProcessingSw::releaseContext() { in releaseContext()
267 return RetCode::SUCCESS; in releaseContext()
280 RetCode DynamicsProcessingSwContext::setCommon(const Parameter::Common& common) { in setCommon()
281 if (auto ret = updateIOFrameSize(common); ret != RetCode::SUCCESS) { in setCommon()
290 return RetCode::SUCCESS; in setCommon()
293 RetCode DynamicsProcessingSwContext::setEngineArchitecture( in setEngineArchitecture()
295 RETURN_VALUE_IF(!validateEngineConfig(cfg), RetCode::ERROR_ILLEGAL_PARAMETER, in setEngineArchitecture()
300 return RetCode::SUCCESS; in setEngineArchitecture()
304 return RetCode::SUCCESS; in setEngineArchitecture()
307 RetCode DynamicsProcessingSwContext::setChannelCfgs( in setChannelCfgs()
311 RETURN_VALUE_IF(!stage.inUse, RetCode::ERROR_ILLEGAL_PARAMETER, "stageNotInUse"); in setChannelCfgs()
313 RetCode ret = RetCode::SUCCESS; in setChannelCfgs()
318 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setChannelCfgs()
323 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setChannelCfgs()
332 RetCode DynamicsProcessingSwContext::setPreEqChannelCfgs( in setPreEqChannelCfgs()
337 RetCode DynamicsProcessingSwContext::setPostEqChannelCfgs( in setPostEqChannelCfgs()
342 RetCode DynamicsProcessingSwContext::setMbcChannelCfgs( in setMbcChannelCfgs()
347 RetCode DynamicsProcessingSwContext::setEqBandCfgs( in setEqBandCfgs()
352 RETURN_VALUE_IF(!stage.inUse, RetCode::ERROR_ILLEGAL_PARAMETER, "eqStageNotInUse"); in setEqBandCfgs()
354 RetCode ret = RetCode::SUCCESS; in setEqBandCfgs()
360 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setEqBandCfgs()
366 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setEqBandCfgs()
374 RetCode DynamicsProcessingSwContext::setPreEqBandCfgs( in setPreEqBandCfgs()
379 RetCode DynamicsProcessingSwContext::setPostEqBandCfgs( in setPostEqBandCfgs()
384 RetCode DynamicsProcessingSwContext::setMbcBandCfgs( in setMbcBandCfgs()
386 RETURN_VALUE_IF(!mEngineSettings.mbcStage.inUse, RetCode::ERROR_ILLEGAL_PARAMETER, in setMbcBandCfgs()
389 RetCode ret = RetCode::SUCCESS; in setMbcBandCfgs()
397 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setMbcBandCfgs()
404 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setMbcBandCfgs()
412 RetCode DynamicsProcessingSwContext::setLimiterCfgs( in setLimiterCfgs()
414 RETURN_VALUE_IF(!mEngineSettings.limiterInUse, RetCode::ERROR_ILLEGAL_PARAMETER, in setLimiterCfgs()
417 RetCode ret = RetCode::SUCCESS; in setLimiterCfgs()
423 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setLimiterCfgs()
429 ret = RetCode::ERROR_ILLEGAL_PARAMETER; in setLimiterCfgs()
470 RetCode DynamicsProcessingSwContext::setInputGainCfgs( in setInputGainCfgs()
474 RetCode::ERROR_ILLEGAL_PARAMETER, "invalidChannel"); in setInputGainCfgs()
477 return RetCode::SUCCESS; in setInputGainCfgs()