Lines Matching refs:mContext
83 RETURN_IF(!mContext, EX_NULL_POINTER, "nullContext"); in setParameterSpecific()
90 RETURN_IF(mContext->setLevel(param.get<NoiseSuppression::level>()) != RetCode::SUCCESS, in setParameterSpecific()
95 RETURN_IF(mContext->setType(param.get<NoiseSuppression::type>()) != RetCode::SUCCESS, in setParameterSpecific()
127 RETURN_IF(!mContext, EX_NULL_POINTER, "nullContext"); in getParameterNoiseSuppression()
131 param.set<NoiseSuppression::level>(mContext->getLevel()); in getParameterNoiseSuppression()
135 param.set<NoiseSuppression::type>(mContext->getType()); in getParameterNoiseSuppression()
150 if (mContext) { in createContext()
153 mContext = std::make_shared<NoiseSuppressionSwContext>(1 /* statusFmqDepth */, common); in createContext()
155 return mContext; in createContext()
159 if (mContext) { in releaseContext()
160 mContext.reset(); in releaseContext()