Lines Matching defs:symbol
24 void KernelSymbolInfo::GetSymbol(const std::string &line, SymbolItem &symbol)
27 str >> std::hex >> symbol.value_;
28 str >> symbol.type_;
30 if (std::strchr("TtWw", symbol.type_)) {
31 symbol.type_ = 'T';
35 str >> symbol.name_;
64 for (auto &symbol : symbolItems) {
65 *(reinterpret_cast<uint64_t *>(p)) = symbol.value_;
67 *(reinterpret_cast<uint32_t *>(p)) = symbol.size_;
72 std::copy(symbol.name_.c_str(),
73 symbol.name_.c_str() + symbol.name_.size() + 1,
75 strTabSize += symbol.name_.size() + 1;