Home
last modified time | relevance | path

Searched refs:symFile (Results 1 – 3 of 3) sorted by relevance

/developtools/hiperf/test/unittest/common/native/
Dperf_file_format_test.cpp135 auto &symFile = testVecSymFile.emplace_back(); variable
136 symFile.filePath_ = "this is test";
137 testSize += (sizeof(uint32_t) + symFile.filePath_.size() + 1);
138 symFile.symbolType_ = BIGK;
139 testSize += sizeof(symFile.symbolType_);
140 symFile.textExecVaddr_ = BIGK;
141 testSize += sizeof(symFile.textExecVaddr_);
142 symFile.textExecVaddrFileOffset_ = BIGK;
143 testSize += sizeof(symFile.textExecVaddrFileOffset_);
144 symFile.buildId_ = "this is test";
[all …]
/developtools/hiperf/src/
Dvirtual_thread.cpp206 SymbolsFile* symFile = FindSymbolsFileByMap(map); in ReadRoMemory() local
207 if (symFile == nullptr) { in ReadRoMemory()
210 map->elf = symFile->GetElfFile(); in ReadRoMemory()
Dvirtual_runtime.cpp661 auto symFile = SymbolsFile::CreateSymbolsFile(SYMBOL_ELF_FILE, recordMmap2.data_.filename); in CheckValidSandBoxMmap() local
662 if (symFile == nullptr) { in CheckValidSandBoxMmap()
679 if (!symFile->LoadDebugInfo(curMap)) { in CheckValidSandBoxMmap()
685 symFile->LoadSymbols(curMap); in CheckValidSandBoxMmap()
689 auto elfLoadInfoMap = symFile->GetPtLoads(); in CheckValidSandBoxMmap()
700 auto elfLoadInfoMap = symFile->GetPtLoads(); in CheckValidSandBoxMmap()
722 symbolsFiles_.emplace_back(std::move(symFile)); in CheckValidSandBoxMmap()