Lines Matching full:address
33 DILineInfo PDBContext::getLineInfoForAddress(uint64_t Address,
36 Result.FunctionName = getFunctionName(Address, Specifier.FNKind);
40 Session->findSymbolByAddress(Address, PDB_SymType::None);
49 auto LineNumbers = Session->findLineNumbersByAddress(Address, Length);
66 PDBContext::getLineInfoForAddressRange(uint64_t Address, uint64_t Size,
72 auto LineNumbers = Session->findLineNumbersByAddress(Address, Size);
85 PDBContext::getInliningInfoForAddress(uint64_t Address,
88 DILineInfo Frame = getLineInfoForAddress(Address, Specifier);
93 std::string PDBContext::getFunctionName(uint64_t Address,
103 Session->findSymbolByAddress(Address, PDB_SymType::PublicSymbol);
109 Session->findSymbolByAddress(Address, PDB_SymType::Function);