Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Djs_pandafile_manager.cpp38 extractors_.clear(); in ~JSPandaFileManager()
314 extractors_.erase(jsPandaFile); in RemoveJSPandaFileVm()
327 extractors_.erase(jsPandaFile); in RemoveJSPandaFileVm()
391 auto iter = extractors_.find(jsPandaFile); in GetJSPtExtractor()
392 if (iter == extractors_.end()) { in GetJSPtExtractor()
395 extractors_[jsPandaFile] = std::move(extractorPtr); in GetJSPtExtractor()
413 auto iter = extractors_.find(jsPandaFile); in GetJSPtExtractorAndExtract()
414 if (iter == extractors_.end()) { in GetJSPtExtractorAndExtract()
418 extractors_[jsPandaFile] = std::move(extractorPtr); in GetJSPtExtractorAndExtract()
437 auto iter = extractors_.find(jsPandaFile); in CpuProfilerGetJSPtExtractor()
[all …]
Djs_pandafile_manager.h106 std::unordered_map<const JSPandaFile *, std::unique_ptr<DebugInfoExtractor>> extractors_; variable