Lines Matching refs:curHdl
873 RkAiqCamgroupHandle* curHdl = algoHdl.ptr(); in prepare() local
874 while (curHdl) { in prepare()
875 if (curHdl->getEnable()) { in prepare()
877 ret = curHdl->updateConfig(true); in prepare()
878 …RKAIQCORE_CHECK_BYPASS(ret, "algoHdl %d update initial user params failed", curHdl->getAlgoType()); in prepare()
879 ret = curHdl->prepare(aiqCore); in prepare()
880 RKAIQCORE_CHECK_BYPASS(ret, "algoHdl %d prepare failed", curHdl->getAlgoType()); in prepare()
882 curHdl = curHdl->getNextHdl(); in prepare()
1202 RkAiqCamgroupHandle* curHdl = algoHdl.ptr(); in reProcess() local
1203 while (curHdl) { in reProcess()
1204 if (curHdl->getEnable()) { in reProcess()
1206 ret = curHdl->updateConfig(true); in reProcess()
1207 …RKAIQCORE_CHECK_BYPASS(ret, "algoHdl %d update initial user params failed", curHdl->getAlgoType()); in reProcess()
1208 ret = curHdl->processing(camgroupParmasArray); in reProcess()
1210 LOGW_CAMGROUP("algoHdl %d processing failed", curHdl->getAlgoType()); in reProcess()
1213 curHdl = curHdl->getNextHdl(); in reProcess()
1349 RkAiqCamgroupHandle* curHdl = def_algo_hdl.ptr(); in rmAlgo() local
1350 while (curHdl) { in rmAlgo()
1351 RkAiqCamgroupHandle* nextHdl = curHdl->getNextHdl(); in rmAlgo()
1353 curHdl->setNextHdl(nextHdl->getNextHdl()); in rmAlgo()
1356 curHdl = nextHdl; in rmAlgo()
1412 RkAiqCamgroupHandle* curHdl = def_algo_hdl.ptr(); in enableAlgo() local
1414 while (curHdl) { in enableAlgo()
1415 if (curHdl->getEnable()) { in enableAlgo()
1418 curHdl = curHdl->getNextHdl(); in enableAlgo()
1536 RkAiqCamgroupHandle* curHdl = algoHdl.ptr(); in rePrepare() local
1537 while (curHdl) { in rePrepare()
1538 if (curHdl->getEnable()) { in rePrepare()
1540 ret = curHdl->updateConfig(true); in rePrepare()
1541 …RKAIQCORE_CHECK_BYPASS(ret, "algoHdl %d update initial user params failed", curHdl->getAlgoType()); in rePrepare()
1542 ret = curHdl->prepare(aiqCore); in rePrepare()
1543 RKAIQCORE_CHECK_BYPASS(ret, "algoHdl %d prepare failed", curHdl->getAlgoType()); in rePrepare()
1545 curHdl = curHdl->getNextHdl(); in rePrepare()