HomeSort by relevance Sort by last modified time
    Searched refs:proto_idx (Results 1 - 4 of 4) 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();
DexClassImpl.java 298 protoIdItems[methodIdItems[methodIdIdx].proto_idx],
  /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...]
dex_file.h 728 const char* GetShorty(uint32_t proto_idx) const {
729 const ProtoId& proto_id = GetProtoId(proto_idx);
    [all...]

Completed in 61 milliseconds