Searched refs:ELFObject (Results 1 – 8 of 8) sorted by relevance
31 static inline RSExecRef wrap(ELFObject<64> *object) { in wrap()35 static inline RSExecRef wrap(ELFObject<32> *object) { in wrap()41 static inline ELFObject<64> *unwrap(RSExecRef object) { in unwrap()42 return reinterpret_cast<ELFObject<64> *>(object); in unwrap()45 static inline ELFObject<32> *unwrap(RSExecRef object) { in unwrap()46 return reinterpret_cast<ELFObject<32> *>(object); in unwrap()72 std::unique_ptr<ELFObject<64> > object(ELFObject<64>::read(AR)); in rsloaderLoadExecutable()74 std::unique_ptr<ELFObject<32> > object(ELFObject<32>::read(AR)); in rsloaderLoadExecutable()88 ELFObject<64>* object = unwrap(object_); in rsloaderRelocateExecutable()90 ELFObject<32>* object = unwrap(object_); in rsloaderRelocateExecutable()[all …]
25 class ELFObject; variable35 ELFObject<64> *mObject;38 ELFObject<32> *mObject;
37 mObject = ELFObject<64>::read(reader); in load()39 mObject = ELFObject<32>::read(reader); in load()
30 class ELFObject {58 ELFObject() : SHNCommonDataPtr(NULL), missingSymbols(false) { } in ELFObject() function62 static ELFObject *read(Archiver &AR);112 ~ELFObject() { in ~ELFObject()
42 ELFObject<Bitwidth> const *owner;133 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
28 template <unsigned Bitwidth> class ELFObject; variable162 typedef ELFObject<BITWIDTH> ELFObjectTy; \
37 inline ELFObject<Bitwidth> *38 ELFObject<Bitwidth>::read(Archiver &AR) { in read()84 inline char const *ELFObject<Bitwidth>::getSectionName(size_t i) const { in getSectionName()98 ELFObject<Bitwidth>::getSectionByIndex(size_t i) const { in getSectionByIndex()104 ELFObject<Bitwidth>::getSectionByIndex(size_t i) { in getSectionByIndex()110 ELFObject<Bitwidth>::getSectionByName(std::string const &str) const { in getSectionByName()117 ELFObject<Bitwidth>::getSectionByName(std::string const &str) { in getSectionByName()126 inline void ELFObject<Bitwidth>::358 inline void ELFObject<Bitwidth>::658 inline void ELFObject<Bitwidth>::[all …]
143 std::unique_ptr<ELFObject<Bitwidth> > object(ELFObject<Bitwidth>::read(AR)); in dump_and_run_object()