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

Method DataPointer

Bcore/src/main/cpp/dex/dex_file.h:948–951  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

946
947 template <typename T>
948 const T* DataPointer(size_t offset) const {
949 // DCHECK_LT(offset, DataSize()) << "Offset past end of data section";
950 return (offset != 0u) ? reinterpret_cast<const T*>(DataBegin() + offset) : nullptr;
951 }
952
953 const OatDexFile* GetOatDexFile() const {
954 return oat_dex_file_;

Callers 1

UnHideAccessFlagsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected