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

Method IsInMainSection

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

Source from the content-addressed store, hash-verified

1001 }
1002
1003 bool IsInMainSection(const void* addr) const {
1004 return Begin() <= addr && addr < Begin() + Size();
1005 }
1006
1007 bool IsInDataSection(const void* addr) const {
1008 return DataBegin() <= addr && addr < DataBegin() + DataSize();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected