Searched refs:strTable_ (Results 1 – 4 of 4) sorted by relevance
| /developtools/profiler/hiebpf/src/ |
| D | elf_symbol_info.cpp | 59 symbolTable.strTable_.resize(strshdr->secSize_); in GetSymbolTable() 60 std::copy(data, data + strshdr->secSize_, symbolTable.strTable_.data()); in GetSymbolTable() 78 symbolTable.strTable_.resize(strshdr->secSize_); in GetSymbolTable() 79 std::copy(data, data + strshdr->secSize_, symbolTable.strTable_.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() 101 *(reinterpret_cast<uint32_t *>(wp)) = symbolTable.strTable_.size(); // strTabLen in GetBinary() 109 std::copy(symbolTable.strTable_.data(), in GetBinary() 110 symbolTable.strTable_.data() + symbolTable.strTable_.size(), wp); in GetBinary() 111 wp += symbolTable.strTable_.size(); in GetBinary()
|
| D | bpf_event_receiver.cpp | 225 …size_t size = sizeof(FixedSymbolTLVItem) + symbolInfo.strTable_.size() + symbolInfo.symTable_.size… in WriteSymbolInfo() 237 sym->strTabLen = symbolInfo.strTable_.size(); in WriteSymbolInfo() 244 if (memcpy_s(tmp + pos, size - pos, symbolInfo.strTable_.data(), sym->strTabLen) != EOK) { in WriteSymbolInfo()
|
| /developtools/profiler/hiebpf/test/unittest/ |
| D | elf_symbol_info_test.cpp | 50 ASSERT_GT(elfSymbolTable.strTable_.size(), 0); 65 ASSERT_GT(elfSymbolTable.strTable_.size(), 0); 93 elfSymbolTable.strTable_.size() +
|
| /developtools/profiler/hiebpf/include/ |
| D | elf_symbol_info.h | 32 std::vector<uint8_t> strTable_; member
|