HomeSort by relevance Sort by last modified time
    Searched defs:proto_idx (Results 1 - 2 of 2) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 223 public int proto_idx; // proto of method : index of protoIdItems field in class:DexFileReader.MethodsIdItem
237 item.proto_idx = b.readUShort();
  /art/runtime/
dex_file.cc 485 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
520 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
523 const uint16_t proto_idx = GetIndexForProtoId(signature); local
539 if (proto_idx > method.proto_idx_) {
541 } else if (proto_idx < method.proto_idx_) {
    [all...]

Completed in 84 milliseconds