Lines Matching refs:mapTask
151 for (iter = hSession->mapTask->begin(); iter != hSession->mapTask->end();) { in ClearOwnTasks()
162 iter = hSession->mapTask->erase(iter); in ClearOwnTasks()
167 iter = hSession->mapTask->erase(iter); in ClearOwnTasks()
427 hSession->mapTask = new(std::nothrow) map<uint32_t, HTaskInfo>(); in MallocSession()
428 if (hSession->mapTask == nullptr) { in MallocSession()
724 void HdcSessionBase::DumpTasksInfo(map<uint32_t, HTaskInfo> &mapTask) in DumpTasksInfo() argument
727 for (auto t : mapTask) { in DumpTasksInfo()
738 map<uint32_t, HTaskInfo> &mapTask = *hSession->mapTask; in AdminTask() local
742 hRet = mapTask[channelId]; in AdminTask()
746 mapTask[channelId] = hInput; in AdminTask()
750 hSession->sessionId, channelId, mapTask.size()); in AdminTask()
754 mapTask.erase(channelId); in AdminTask()
756 hSession->sessionId, channelId, mapTask.size()); in AdminTask()
759 if (mapTask.count(channelId)) { in AdminTask()
760 hRet = mapTask[channelId]; in AdminTask()
1223 for (auto v : *hSession->mapTask) { in ReChildLoopForSessionClear()