MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / RelativeAt

Method RelativeAt

Bcore/src/main/cpp/dex/dex_instruction.h:242–244  ·  view source on GitHub ↗

Reads an instruction out of the stream from the current address plus an offset.

Source from the content-addressed store, hash-verified

240
241 // Reads an instruction out of the stream from the current address plus an offset.
242 const Instruction* RelativeAt(int32_t offset) const WARN_UNUSED {
243 return At(reinterpret_cast<const uint16_t*>(this) + offset);
244 }
245
246 // Returns a pointer to the next instruction in the stream.
247 const Instruction* Next() const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected