Lines Matching defs:RVA
221 uint32_t RVA = VA - getLoadAddress();
222 return addressForRVA(RVA, Section, Offset);
225 bool NativeSession::addressForRVA(uint32_t RVA, uint32_t &Section,
234 if ((int32_t)RVA < 0)
237 Offset = RVA;
240 if (RVA < Sec.VirtualAddress)
242 Offset = RVA - Sec.VirtualAddress;
255 std::unique_ptr<PDBSymbol> NativeSession::findSymbolByRVA(uint32_t RVA,
259 addressForRVA(RVA, Section, Offset);
285 NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const {
286 return Cache.findLineNumbersByVA(getLoadAddress() + RVA, Length);