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

Method GetMemberIndex

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

Source from the content-addressed store, hash-verified

1270 }
1271 }
1272 uint32_t GetMemberIndex() const {
1273 if (pos_ < EndOfInstanceFieldsPos()) {
1274 return last_idx_ + field_.field_idx_delta_;
1275 } else {
1276 DCHECK_LT(pos_, EndOfVirtualMethodsPos());
1277 return last_idx_ + method_.method_idx_delta_;
1278 }
1279 }
1280 uint32_t GetRawMemberAccessFlags() const {
1281 if (pos_ < EndOfInstanceFieldsPos()) {
1282 return field_.access_flags_;

Callers 8

fixCodeItemFunction · 0.80
FindCodeItemOffsetMethod · 0.80
CheckStaticFieldTypesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected