Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file-inl.h223 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
225 local_in_reg[arg_reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
270 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugLocalInfo() local
283 local_in_reg[reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
415 uint32_t name_idx = DecodeUnsignedLeb128P1(&stream); in DecodeDebugPositionInfo() local
416 entry.source_file_ = index_to_string_data(name_idx); in DecodeDebugPositionInfo()
Ddex_file.cc244 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindFieldId() local
256 if (name_idx > field.name_idx_) { in FindFieldId()
258 } else if (name_idx < field.name_idx_) { in FindFieldId()
279 const dex::StringIndex name_idx = GetIndexForStringId(name); in FindMethodId() local
291 if (name_idx > method.name_idx_) { in FindMethodId()
293 } else if (name_idx < method.name_idx_) { in FindMethodId()
Ddex_file_verifier.cc1468 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1469 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1470 name_idx--; in CheckIntraDebugInfoItem()
1471 if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL name_idx")) { in CheckIntraDebugInfoItem()
1499 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1500 if (name_idx != 0) { in CheckIntraDebugInfoItem()
1501 name_idx--; in CheckIntraDebugInfoItem()
1502 … if (!CheckIndex(name_idx, header_->string_ids_size_, "DBG_START_LOCAL_EXTENDED name_idx")) { in CheckIntraDebugInfoItem()
1523 DECODE_UNSIGNED_CHECKED_FROM(ptr_, name_idx); in CheckIntraDebugInfoItem()
1524 if (name_idx != 0) { in CheckIntraDebugInfoItem()
[all …]
/art/dexdump/
Ddexdump.cc522 const u4 name_idx = DecodeUnsignedLeb128(data); in dumpEncodedValue() local
524 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile); in dumpEncodedValue()