Searched defs:map (Results 1 - 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DRegisterMapper.java41 public abstract RegisterSpec map(RegisterSpec registerSpec); method in class:RegisterMapper
48 public final RegisterSpecList map(RegisterSpecList sources) { method in class:RegisterMapper
53 newSources.set(i, map(sources.get(i)));
H A DBasicRegisterMapper.java51 public RegisterSpec map(RegisterSpec registerSpec) { method in class:BasicRegisterMapper
H A DSsaRenamer.java86 /** map of SSA register number to debug (local var names) or null of n/a */
339 public RegisterSpec map(RegisterSpec registerSpec) { method in class:SsaRenamer.BlockRenamer.RenamingMapper
567 // Just map as above.
/dalvik/libdex/
H A DDexDataMap.h18 * Verification-time map of data section items
27 u4 count; /* number of items currently in the map */
41 void dexDataMapFree(DexDataMap* map);
44 * Add a new element to the map. The offset must be greater than the
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
53 int dexDataMapGet(DexDataMap* map, u4 offset);
56 * Verify that there is an entry in the map, mapping the given offset to
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) { argument
70 return dexDataMapVerify(map, offse
[all...]
H A DDexDataMap.cpp18 * Verification-time map of data section items
34 DexDataMap* map = NULL; local
44 map = (DexDataMap*) malloc(size);
46 if (map == NULL) {
50 map->count = 0;
51 map->max = maxCount;
52 map->offsets = (u4*) (map + 1);
53 map->types = (u2*) (map
61 dexDataMapFree(DexDataMap* map) argument
74 dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) argument
94 dexDataMapGet(DexDataMap* map, u4 offset) argument
125 dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) argument
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DAddressMap.java27 /** underlying map. TODO: This might be too inefficient. */
28 private final HashMap<Integer,Integer> map; field in class:AddressMap
34 map = new HashMap<Integer,Integer>();
42 Integer value = map.get(keyAddress);
50 map.put(keyAddress, valueAddress);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDexFile.java55 * {@code non-null;} map section. The map needs to be in a section by itself
59 private final MixedItemSection map; field in class:DexFile
120 map = new MixedItemSection("map", this, 4, SortType.NONE);
129 classData, map };
274 * Gets the map section.
279 * @return {@code non-null;} the map section
282 return map;
412 return map;
[all...]
/dalvik/dexlist/
H A DDexList.cpp203 MemMapping map; local
208 utfr = dexOpenAndMap(fileName, NULL, &map, true);
220 pDexFile = dexFileParse((u1*)map.addr, map.length, kDexParseDefault);
237 sysReleaseShmem(&map);
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java60 * {@code non-null;} map section. The map needs to be in a section by itself
64 private final MixedItemSection map; field in class:DexFile
127 map = new MixedItemSection("map", this, 4, SortType.NONE);
136 classData, map };
295 * Gets the map section.
300 * @return {@code non-null;} the map section
303 return map;
433 return map;
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.h153 } map[1]; member in struct:UninitInstanceMap
159 * Various bits of data used by the verifier and register map generator.
186 * Uninitialized instance map, used for tracking the movement of
194 * instruction. For register map generation, we're only interested
/dalvik/dexdump/
H A DDexDump.cpp1535 * Dump a map in the "differential" format.
1573 * Dump register map contents of the current method.
1575 * "*pData" should point to the start of the register map data. Advances
1576 * "*pData" to the start of the next map.
1595 /* no map */
1596 printf(" (no map)\n");
1640 * Dump the contents of the register map area.
1776 MemMapping map; local
1783 if (dexOpenAndMap(fileName, gOptions.tempFileName, &map, false) != 0) {
1792 pDexFile = dexFileParse((u1*)map
[all...]

Completed in 293 milliseconds