Home
last modified time | relevance | path

Searched refs:name_idx (Results 1 – 7 of 7) sorted by relevance

/art/libdexfile/dex/
Ddex_file.cc372 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindFieldId() local
384 if (name_idx > field.name_idx_) { in FindFieldId()
386 } else if (name_idx < field.name_idx_) { in FindFieldId()
407 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindMethodId() local
409 return FindMethodIdByIndex(class_idx, name_idx, proto_idx); in FindMethodId()
413 dex::StringIndex name_idx, in FindMethodIdByIndex() argument
426 if (name_idx > method.name_idx_) { in FindMethodIdByIndex()
428 } else if (name_idx < method.name_idx_) { in FindMethodIdByIndex()
438 DCHECK_EQ(name_idx, method.name_idx_); in FindMethodIdByIndex()
Ddex_file-inl.h328 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
330 local_in_reg[arg_reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
375 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
395 local_in_reg[reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
528 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugPositionInfo() local
529 entry.source_file_ = index_to_string_data(name_idx); in DecodeDebugPositionInfo()
Ddex_file_verifier.cc1925 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1926 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1927 name_idx--; in CheckIntraDebugInfoItem()
1928 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) { in CheckIntraDebugInfoItem()
1956 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1957 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1958 name_idx--; in CheckIntraDebugInfoItem()
1959 … if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED name_idx")) { in CheckIntraDebugInfoItem()
1980 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1981 if (name_idx != 0) { in CheckIntraDebugInfoItem()
[all …]
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc87 Elf_Word name_idx = strtab->Write(name); in WriteMinidebugInfo() local
88 symtab->Add(name_idx, text, sym.st_value, sym.st_size, STB_GLOBAL, STT_FUNC); in WriteMinidebugInfo()
/art/runtime/
Dart_method-inl.h452 const dex::StringIndex name_idx = method_id.name_idx_;
454 const char* utf8_name = dex_file->GetStringDataAndUtf16Length(name_idx, &utf16_length);
/art/runtime/mirror/
Dclass.cc736 auto name_idx = get_name_idx(mid); in ClassMemberBinarySearch() local
741 DCHECK_LE(name_idx, get_name_idx(mid2)); in ClassMemberBinarySearch()
742 return (name_idx != get_name_idx(mid2)) ? -1 : 0; in ClassMemberBinarySearch()
755 DCHECK_GE(name_idx, get_name_idx(mid2)); in ClassMemberBinarySearch()
756 return (name_idx != get_name_idx(mid2)) ? 1 : 0; in ClassMemberBinarySearch()
/art/dexdump/
Ddexdump.cc622 const u4 name_idx = DecodeUnsignedLeb128(data); in dumpEncodedValue() local
624 fputs(pDexFile->GetStringData(dex::StringIndex(name_idx)), gOutFile); in dumpEncodedValue()