/dalvik/libdex/ |
D | DexDataMap.cpp | 33 DexDataMap* map = NULL; in dexDataMapAlloc() local 41 map = (DexDataMap*) malloc(size); in dexDataMapAlloc() 43 if (map == NULL) { in dexDataMapAlloc() 47 map->count = 0; in dexDataMapAlloc() 48 map->max = maxCount; in dexDataMapAlloc() 49 map->offsets = (u4*) (map + 1); in dexDataMapAlloc() 50 map->types = (u2*) (map->offsets + maxCount); in dexDataMapAlloc() 52 return map; in dexDataMapAlloc() 58 void dexDataMapFree(DexDataMap* map) { in dexDataMapFree() argument 64 free(map); in dexDataMapFree() [all …]
|
D | DexDataMap.h | 41 void dexDataMapFree(DexDataMap* map); 47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type); 53 int dexDataMapGet(DexDataMap* map, u4 offset); 60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type); 65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) { in dexDataMapVerify0Ok() argument 70 return dexDataMapVerify(map, offset, type); in dexDataMapVerify0Ok()
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | AddressMap.java | 27 private final HashMap<Integer,Integer> map; field in AddressMap 33 map = new HashMap<Integer,Integer>(); in AddressMap() 41 Integer value = map.get(keyAddress); in get() 49 map.put(keyAddress, valueAddress); in put()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | RegisterMapper.java | 41 public abstract RegisterSpec map(RegisterSpec registerSpec); in map() method in RegisterMapper 48 public final RegisterSpecList map(RegisterSpecList sources) { in map() method in RegisterMapper 53 newSources.set(i, map(sources.get(i))); in map() 67 public final RegisterSpecSet map(RegisterSpecSet sources) { in map() method in RegisterMapper 74 newSources.put(map(registerSpec)); in map()
|
D | BasicRegisterMapper.java | 50 public RegisterSpec map(RegisterSpec registerSpec) { in map() method in BasicRegisterMapper
|
D | MoveParamCombiner.java | 118 public RegisterSpec map(RegisterSpec registerSpec) { in run()
|
D | SsaInsn.java | 159 result = mapper.map(result); in mapRegisters()
|
D | NormalSsaInsn.java | 48 RegisterSpecList newSources = mapper.map(oldSources); in mapSourceRegisters()
|
D | PhiInsn.java | 272 o.regSpec = mapper.map(old); in mapSourceRegisters()
|
D | ConstCollector.java | 381 public RegisterSpec map(RegisterSpec registerSpec) { in updateConstUses()
|
D | SsaRenamer.java | 340 public RegisterSpec map(RegisterSpec registerSpec) { in map() method in SsaRenamer.BlockRenamer.RenamingMapper
|
D | EscapeAnalysis.java | 671 public RegisterSpec map(RegisterSpec registerSpec) { in movePropagate()
|
/dalvik/dx/tests/034-dex-minimal/ |
D | expected.txt | 49 |map: 50 |[70] map list 52 |[74] header_item map 57 |[80] map_list map 66 | map list: 1 item; 28 bytes total
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | DexFile.java | 59 private final MixedItemSection map; field in DexFile 120 map = new MixedItemSection("map", this, 4, SortType.NONE); in DexFile() 129 classData, map }; in DexFile() 282 return map; in getMap() 412 return map; in getLastDataSection() 509 if (one == map) { in toDex0() 515 MapItem.addMap(sections, map); in toDex0() 516 map.prepare(); in toDex0()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | DexFile.java | 67 private final MixedItemSection map; field in DexFile 138 map = new MixedItemSection("map", this, 4, SortType.NONE); in DexFile() 157 wordData, typeLists, stringData, byteData, classData, map }; in DexFile() 164 wordData, typeLists, stringData, byteData, classData, map }; in DexFile() 358 return map; in getMap() 514 return map; in getLastDataSection() 662 if (one == map) { in toDex0() 668 MapItem.addMap(sections, map); in toDex0() 669 map.prepare(); in toDex0()
|
/dalvik/dx/tests/139-lambda-metafactory/ |
D | expected.txt | 735 |map: 736 |[654] map list 738 |[658] header_item map 743 |[664] string_id_item map 748 |[670] type_id_item map 753 |[67c] proto_id_item map 758 |[688] field_id_item map 763 |[694] method_id_item map 768 |[6a0] class_def_item map 773 |[6ac] call_site_id_item map [all …]
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | LocalStart.java | 103 return new LocalStart(getPosition(), mapper.map(local)); in withMapper()
|
D | LocalSnapshot.java | 101 return new LocalSnapshot(getPosition(), mapper.map(locals)); in withMapper()
|
D | DalvInsn.java | 392 return withRegisters(mapper.map(getRegisters())); in withMapper()
|
/dalvik/dx/tests/132-invoke-polymorphic/ |
D | expected.txt | 1359 |map: 1360 |[ac0] map list 1362 |[ac4] header_item map 1367 |[ad0] string_id_item map 1372 |[adc] type_id_item map 1377 |[ae8] proto_id_item map 1382 |[af4] method_id_item map 1387 |[b00] class_def_item map 1392 |[b0c] annotation_set_item map 1397 |[b18] code_item map [all …]
|
/dalvik/dx/tests/135-invoke-custom/src/invokecustom/ |
D | InvokeCustom.java | 198 .map(String::trim).findAny().orElse(""); in lambdaTest()
|
/dalvik/dx/src/com/android/dx/command/dexer/ |
D | Main.java | 1198 Map<String, List<String>> map = new HashMap<String, List<String>>(); field in Main.BestEffortMainDexListFilter 1204 List<String> fullPath = map.get(simple); in BestEffortMainDexListFilter() 1207 map.put(simple, fullPath); in BestEffortMainDexListFilter() 1218 List<String> fullPaths = map.get(simple); in accept()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 2150 MemMapping map; in process() local 2157 if (dexOpenAndMap(fileName, gOptions.tempFileName, &map, false) != 0) { in process() 2166 pDexFile = dexFileParse((u1*)map.addr, map.length, flags); in process() 2182 sysReleaseShmem(&map); in process()
|
/dalvik/dx/tests/135-invoke-custom/ |
D | expected.txt | 279 |[7c] "map" 977 … |[4e] java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream; 2843 000edc: 7220 4e00 2000 | 0026: invoke-interface {v0, v2}, java.util.stream.Stream.map:(Lj… 5472 001dbf: 6d61 7000 |"map" 6225 |map: 6226 |[22bc] map list 6228 |[22c0] header_item map 6233 |[22cc] string_id_item map 6238 |[22d8] type_id_item map 6243 |[22e4] proto_id_item map [all …]
|