Searched refs:TypedRVA (Results 1 – 5 of 5) sorted by relevance
31 class TypedRVA {33 explicit TypedRVA(RVA rva) : rva_(rva), offset_(-1) { in TypedRVA() function36 virtual ~TypedRVA() { }; in ~TypedRVA()67 static bool IsLessThan(TypedRVA *a, TypedRVA *b) { in IsLessThan()95 ScopedVector<TypedRVA> &Rel32Locations() { return rel32_locations_; } in Rel32Locations()167 CheckBool RVAsToOffsets(ScopedVector<TypedRVA>* rvas /*in and out*/);179 ScopedVector<TypedRVA>::iterator* current_rel,180 ScopedVector<TypedRVA>::iterator end_rel,203 ScopedVector<TypedRVA> rel32_locations_;
52 std::set<courgette::DisassemblerElf32::TypedRVA*> in TestExe()55 for (std::vector<courgette::DisassemblerElf32::TypedRVA*>::iterator in TestExe()67 for (std::vector<courgette::DisassemblerElf32::TypedRVA*>::iterator in TestExe()
225 CheckBool DisassemblerElf32::RVAsToOffsets(ScopedVector<TypedRVA>* rvas) { in RVAsToOffsets()226 for (ScopedVector<TypedRVA>::iterator rva = rvas->begin(); in RVAsToOffsets()254 ScopedVector<TypedRVA>::iterator current_rel = rel32_locations_.begin(); in ParseFile()257 ScopedVector<TypedRVA>::iterator end_rel = rel32_locations_.end(); in ParseFile()325 ScopedVector<TypedRVA>::iterator* current_rel, in ParseProgbitsSection()326 ScopedVector<TypedRVA>::iterator end_rel, in ParseProgbitsSection()502 TypedRVA::IsLessThan); in ParseRel32RelocsFromSections()
19 class TypedRVAX86 : public TypedRVA {21 explicit TypedRVAX86(RVA rva) : TypedRVA(rva) { in TypedRVAX86()
27 class TypedRVAARM : public TypedRVA {29 TypedRVAARM(ARM_RVA type, RVA rva) : TypedRVA(rva), type_(type) { } in TypedRVAARM()