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

  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 202 public int name_idx; // name of field : index into string id (or field in class:DexFileReader.FieldIdItem
216 item.name_idx = b.readUInt();
224 public int name_idx; // name of method : index into string id (or field in class:DexFileReader.MethodsIdItem
238 item.name_idx = b.readUInt();
  /art/runtime/
dex_file.cc 371 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
373 const uint32_t name_idx = GetIndexForStringId(name); local
385 if (name_idx > field.name_idx_) {
387 } else if (name_idx < field.name_idx_) {
406 // Binary search MethodIds knowing that they are sorted by class_idx, name_idx then proto_idx
408 const uint32_t name_idx = GetIndexForStringId(name); local
420 if (name_idx > method.name_idx_) {
422 } else if (name_idx < method.name_idx_) {
723 uint16_t name_idx; local
748 name_idx = DecodeUnsignedLeb128P1(&stream)
    [all...]
dex_file_verifier.cc 544 if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element name_idx")) {
549 LOG(ERROR) << StringPrintf("Out-of-order annotation_element name_idx: %x then %x",
813 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
814 if (name_idx != 0) {
815 name_idx--;
816 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) {
844 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
845 if (name_idx != 0) {
846 name_idx--
868 uint32_t name_idx = DecodeUnsignedLeb128(&ptr_); local
    [all...]

Completed in 172 milliseconds