Home
last modified time | relevance | path

Searched refs:symTable_ (Results 1 – 10 of 10) sorted by relevance

/developtools/profiler/hiebpf/src/
Delf_symbol_info.cpp49 symbolTable.symTable_.resize(shdr->secSize_); in GetSymbolTable()
50 std::copy(data, data + shdr->secSize_, symbolTable.symTable_.data()); in GetSymbolTable()
68 symbolTable.symTable_.resize(shdr->secSize_); in GetSymbolTable()
69 std::copy(data, data + shdr->secSize_, symbolTable.symTable_.data()); in GetSymbolTable()
81 CHECK_TRUE(symbolTable.strTable_.size() != 0 && symbolTable.symTable_.size() != 0, false, in GetSymbolTable()
93 uint32_t len = fixLen + symbolTable.strTable_.size() + symbolTable.symTable_.size() + in GetBinary()
103 *(reinterpret_cast<uint32_t *>(wp)) = symbolTable.symTable_.size(); // symTabLen in GetBinary()
112 std::copy(symbolTable.symTable_.data(), in GetBinary()
113 symbolTable.symTable_.data() + symbolTable.symTable_.size(), wp); in GetBinary()
114 wp += symbolTable.symTable_.size(); in GetBinary()
Dbpf_event_receiver.cpp225 …ize_t size = sizeof(FixedSymbolTLVItem) + symbolInfo.strTable_.size() + symbolInfo.symTable_.size() in WriteSymbolInfo()
238 sym->symTabLen = symbolInfo.symTable_.size(); in WriteSymbolInfo()
249 if (memcpy_s(tmp + pos, size - pos, symbolInfo.symTable_.data(), sym->symTabLen) != EOK) { in WriteSymbolInfo()
/developtools/profiler/hiebpf/test/unittest/
Delf_symbol_info_test.cpp49 ASSERT_GT(elfSymbolTable.symTable_.size(), 0);
64 ASSERT_GT(elfSymbolTable.symTable_.size(), 0);
94 elfSymbolTable.symTable_.size() +
/developtools/profiler/hiebpf/include/
Delf_symbol_info.h33 std::vector<uint8_t> symTable_; member
/developtools/profiler/device/plugins/native_daemon/src/
Delf_file.cpp243 symTable_ = SymbolTable::MakeUnique(symNamesStr_, secBuf, secSize, entrySize); in ParseSymTable()
244 if (symTable_ == nullptr) { in ParseSymTable()
Dsymbols_file.cpp561 for (const std::unique_ptr<ElfSymbol> &symbol : elfFile->symTable_->symbols_) { in ReadSymTab()
/developtools/hiperf/src/
Delf_file.cpp278 symTable_ = SymbolTable::MakeUnique(symNamesStr_, secBuf, secSize, entrySize); in ParseSymTable()
279 if (symTable_ == nullptr) { in ParseSymTable()
Dsymbols_file.cpp589 for (const std::unique_ptr<ElfSymbol> &symbol : elfFile->symTable_->symbols_) { in ReadSymTab()
/developtools/hiperf/include/
Delf_parser.h273 std::unique_ptr<SymbolTable> symTable_ {nullptr};
/developtools/profiler/device/plugins/native_daemon/include/
Delf_parser.h304 std::unique_ptr<SymbolTable> symTable_ {nullptr};