Home
last modified time | relevance | path

Searched refs:TypeItem (Results 1 – 8 of 8) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DTypeList.java23 public TypeItem[] list;
30 list = new TypeItem[size]; in read()
32 (list[i] = new TypeItem()).read(file); in read()
41 for (TypeItem typeItem : list) { in write()
48 for (TypeItem type : list) { in incrementIndex()
DTypeItem.java21 public class TypeItem implements RawDexObject { class
/art/libdexfile/dex/
Ddex_file_structs.h143 struct TypeItem { struct
147 DISALLOW_COPY_AND_ASSIGN(TypeItem); argument
157 const TypeItem& GetTypeItem(uint32_t idx) const { in GetTypeItem()
169 return GetHeaderSize() + sizeof(TypeItem) * count; in GetListSize()
174 TypeItem list_[1]; // elements of the list
Dtest_dex_file_builder.h132 data_section_size = entry.second.data_offset + 4u + num_args * sizeof(dex::TypeItem); in Build()
195 Write16(type_list_offset + 4u + i * sizeof(dex::TypeItem), in Build()
Ddex_file_verifier.cc1372 if (!CheckList(sizeof(dex::TypeItem), "type_list", &ptr_)) { in CheckIntraTypeList()
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java30 import dexfuzz.rawdex.TypeItem;
617 List<TypeItem> typeItemList = new ArrayList<TypeItem>(); in createTypeList()
627 TypeItem typeItem = new TypeItem(); in createTypeList()
631 typeList.list = typeItemList.toArray(new TypeItem[]{}); in createTypeList()
671 for (TypeItem typeItem : typeList.list) { in findTypeList()
/art/runtime/
Dimtable-inl.h69 const dex::TypeItem& type = param_types->GetTypeItem(i); in GetImtHashComponents()
/art/dexdump/
Ddexdump.cc755 static void dumpInterface(const DexFile* pDexFile, const dex::TypeItem& pTypeItem, int i) { in dumpInterface()