Home
last modified time | relevance | path

Searched refs:scriptInstructions_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/update/updater/services/script/script_manager/
H A Dscript_managerImpl.cpp72 auto iter1 = scriptInstructions_.begin(); in ~ScriptManagerImpl()
73 while (iter1 != scriptInstructions_.end()) { in ~ScriptManagerImpl()
76 iter1 = scriptInstructions_.erase(iter1); in ~ScriptManagerImpl()
78 scriptInstructions_.clear(); in ~ScriptManagerImpl()
246 if (scriptInstructions_.find(instrName) != scriptInstructions_.end()) { in AddInstruction()
251 delete scriptInstructions_[instrName]; in AddInstruction()
253 scriptInstructions_[instrName] = instruction; in AddInstruction()
284 if (scriptInstructions_.find(instrName) == scriptInstructions_.end()) { in FindInstruction()
287 return scriptInstructions_[instrName]; in FindInstruction()
H A Dscript_manager_impl.h49 std::map<std::string, UScriptInstructionPtr> scriptInstructions_; variable