Lines Matching defs:symbol

82         // so this is not the first time load symbol
177 const DfxSymbol symbol;
178 return symbol;
393 for (auto& symbol: symbols_) {
394 HLOGD("symbol %s", symbol.ToDebugString().c_str());
570 The symbol is in the text (code) section.
573 The symbol is a weak symbol that has not been specifically
574 tagged as a weak object symbol. When a weak defined symbol is
575 linked with a normal defined symbol, the normal defined symbol
576 is used with no error. When a weak undefined symbol is linked
577 and the symbol is not defined, the value of the weak symbol
639 printf("The symbol table addresses in /proc/kallsyms are all 0.\n"
722 HLOGD("try read kernel thread symbol file %s in %s", filePath_.c_str(), procPath.c_str());
724 "kernel thread symbol file %s cannot be opened\n", filePath_.c_str());
745 printf("The symbol table addresses in %s are all 0.\n"
806 // create symbol
904 HLOGD("the symbol file is %s, pid is %d.", filePath_.c_str(), pid_);
913 "map is exec not abc file , the symbol file is:%s", map_->name.c_str());
919 "failed to call GetHapAbcInfo, the symbol file is:%s", filePath_.c_str());
923 HLOGD("symbol file : %s, isAbc: %d", filePath_.c_str(), isHapAbc_);
935 HLOGD("symbol file name %s loadOffSet %u abcDataSize_ %u",
941 HLOGE("failed to call ArkCreateJsSymbolExtractor, the symbol file is:%s", filePath_.c_str());
1005 HLOGD("failed to call ParseArkFrameInfo, the symbol file is : %s", map->name.c_str());
1022 HLOGD("ip : 0x%" PRIx64 " the symbol file is : %s, function is %s demangle_ : %s", ip,
1027 DfxSymbol symbol(ip, "");
1028 return symbol;
1160 DfxSymbol symbol;
1174 if key symbol vaddr is { 1, 2, 4, 5, 5, 6 };
1196 symbol = *found; // copy
1197 HLOGV("found '%s' for vaddr 0x%016" PRIx64 "", symbol.ToString().c_str(), vaddrInFile);
1202 if (!symbol.IsValid()) {
1206 symbol.fileVaddr_ = vaddrInFile;
1207 symbol.symbolFileIndex_ = id_;
1215 return symbol;
1259 for (const auto& symbol : symbolsFile->symbols_) {
1260 symbolsFile->symbolsMap_.emplace(symbol.funcVaddr_, symbol);
1266 HLOGV("load %zu symbol from SymbolFileStruct for file '%s'", symbolsFile->symbols_.size(),
1286 for (const auto symbol : symbols) {
1288 symbolStruct.vaddr_ = symbol->funcVaddr_;
1289 symbolStruct.len_ = symbol->size_;
1290 symbolStruct.symbolName_ = symbol->GetName();
1293 HLOGV("export %zu symbol to SymbolFileStruct from %s", symbolFileStruct.symbolStructs_.size(),
1303 void SymbolsFile::AddSymbol(DfxSymbol symbol)
1306 symbols_.emplace_back(symbol);