Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file-inl.h224 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
226 local_in_reg[arg_reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
271 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
284 local_in_reg[reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
416 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugPositionInfo() local
417 entry.source_file_ = index_to_string_data(name_idx); in DecodeDebugPositionInfo()
Ddex_file.cc245 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindFieldId() local
257 if (name_idx > field.name_idx_) { in FindFieldId()
259 } else if (name_idx < field.name_idx_) { in FindFieldId()
280 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindMethodId() local
292 if (name_idx > method.name_idx_) { in FindMethodId()
294 } else if (name_idx < method.name_idx_) { in FindMethodId()
Ddex_file_verifier.cc1764 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1765 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1766 name_idx--; in CheckIntraDebugInfoItem()
1767 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) { in CheckIntraDebugInfoItem()
1795 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1796 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1797 name_idx--; in CheckIntraDebugInfoItem()
1798 … if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED name_idx")) { in CheckIntraDebugInfoItem()
1819 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1820 if (name_idx != 0) { in CheckIntraDebugInfoItem()
[all …]
/art/dexdump/
Ddexdump.cc561 const u4 name_idx = DecodeUnsignedLeb128(data); in dumpEncodedValue() local
563 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile); in dumpEncodedValue()