Searched refs:symTable_ (Results 1 – 10 of 10) sorted by relevance
| /developtools/profiler/hiebpf/src/ |
| D | elf_symbol_info.cpp | 49 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()
|
| D | bpf_event_receiver.cpp | 225 …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/ |
| D | elf_symbol_info_test.cpp | 49 ASSERT_GT(elfSymbolTable.symTable_.size(), 0); 64 ASSERT_GT(elfSymbolTable.symTable_.size(), 0); 94 elfSymbolTable.symTable_.size() +
|
| /developtools/profiler/hiebpf/include/ |
| D | elf_symbol_info.h | 33 std::vector<uint8_t> symTable_; member
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | elf_file.cpp | 243 symTable_ = SymbolTable::MakeUnique(symNamesStr_, secBuf, secSize, entrySize); in ParseSymTable() 244 if (symTable_ == nullptr) { in ParseSymTable()
|
| D | symbols_file.cpp | 561 for (const std::unique_ptr<ElfSymbol> &symbol : elfFile->symTable_->symbols_) { in ReadSymTab()
|
| /developtools/hiperf/src/ |
| D | elf_file.cpp | 278 symTable_ = SymbolTable::MakeUnique(symNamesStr_, secBuf, secSize, entrySize); in ParseSymTable() 279 if (symTable_ == nullptr) { in ParseSymTable()
|
| D | symbols_file.cpp | 589 for (const std::unique_ptr<ElfSymbol> &symbol : elfFile->symTable_->symbols_) { in ReadSymTab()
|
| /developtools/hiperf/include/ |
| D | elf_parser.h | 273 std::unique_ptr<SymbolTable> symTable_ {nullptr};
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | elf_parser.h | 304 std::unique_ptr<SymbolTable> symTable_ {nullptr};
|