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

Method At

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

Reads an instruction out of the stream at the specified address.

Source from the content-addressed store, hash-verified

234
235 // Reads an instruction out of the stream at the specified address.
236 static const Instruction* At(const uint16_t* code) {
237 DCHECK(code != nullptr);
238 return reinterpret_cast<const Instruction*>(code);
239 }
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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected