Lines Matching refs:algo_map
714 auto* algo_map = aiqCore->getAlgoTypeHandleMap(algo_des->type); in addDefaultAlgos() local
715 if (!algo_map || algo_map->empty()) { in addDefaultAlgos()
1289 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algo.type); in addAlgo() local
1291 if (!algo_map) { in addAlgo()
1296 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::reverse_iterator rit = algo_map->rbegin(); in addAlgo()
1311 new_hdl->setParentHdl((*algo_map)[0].ptr()); in addAlgo()
1313 (*algo_map)[algo.id] = new_hdl; in addAlgo()
1334 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algoType); in rmAlgo() local
1335 NULL_RETURN_RET(algo_map, XCAM_RETURN_ERROR_FAILED); in rmAlgo()
1336 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::iterator it = algo_map->find(id); in rmAlgo()
1338 if (it == algo_map->end()) { in rmAlgo()
1359 algo_map->erase(it); in rmAlgo()
1382 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algoType); in enableAlgo() local
1383 NULL_RETURN_RET(algo_map, XCAM_RETURN_ERROR_FAILED); in enableAlgo()
1384 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::iterator it = algo_map->find(id); in enableAlgo()
1386 if (it == algo_map->end()) { in enableAlgo()
1431 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algoType); in getAxlibStatus() local
1432 NULL_RETURN_RET(algo_map, false); in getAxlibStatus()
1433 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::iterator it = algo_map->find(id); in getAxlibStatus()
1435 if (it == algo_map->end()) { in getAxlibStatus()
1453 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algo_type); in getEnabledAxlibCtx() local
1454 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::reverse_iterator rit = algo_map->rbegin(); in getEnabledAxlibCtx()
1455 if (rit != algo_map->rend() && rit->second->getEnable()) in getEnabledAxlibCtx()
1468 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algo_type); in getAxlibCtx() local
1470 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::iterator it = algo_map->find(lib_id); in getAxlibCtx()
1472 if (it != algo_map->end()) { in getAxlibCtx()
1488 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* algo_map = getAlgoTypeHandleMap(algo_type); in getAiqCamgroupHandle() local
1490 if (!algo_map) in getAiqCamgroupHandle()
1493 std::map<int, SmartPtr<RkAiqCamgroupHandle>>::iterator it = algo_map->find(0); in getAiqCamgroupHandle()
1495 if (it != algo_map->end()) { in getAiqCamgroupHandle()