Searched refs:symTable_ (Results 1 – 4 of 4) 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
|