/dalvik/vm/arch/generic/ |
H A D | Call.c | 63 ffi_type* types[kMaxArgs]; local 70 types[0] = &ffi_type_pointer; 73 types[1] = &ffi_type_pointer; 84 * Scan the types out of the short signature. Use them to fill out the 85 * "types" array. Store the start address of the argument in "values". 89 types[dstArg] = getFfiType(sigByte); 98 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, dstArg, retType, types) != FFI_OK) {
|
/dalvik/hit/src/com/android/hit/ |
H A D | ClassObj.java | 52 int[] types = mStaticFieldTypes; 53 final int N = types.length; 62 int type = types[i]; 139 public final void setFieldTypes(int[] types) { argument 140 mFieldTypes = types; 147 public final void setStaticFieldTypes(int[] types) { argument 148 mStaticFieldTypes = types; 194 int[] types = mStaticFieldTypes; 195 final int N = types.length; 204 int type = types[ [all...] |
H A D | ClassInstance.java | 47 private void resolve(State state, ClassObj isa, int[] types, argument 51 final int N = types.length; 59 int type = types[i]; 108 int[] types = isa.mFieldTypes; 111 final int N = types.length; 119 int type = types[i]; 159 int[] types = isa.mFieldTypes; 163 final int N = types.length; 173 int type = types[i];
|
H A D | HprofParser.java | 485 int[] types = new int[numEntries]; 492 types[i] = type; 505 theClass.setFieldTypes(types);
|
/dalvik/libdex/ |
H A D | DexDataMap.c | 53 map->types = (u2*) (map->offsets + maxCount); 86 map->types[map->count] = type; 112 return map->types[guessIdx];
|
H A D | DexDataMap.h | 30 u2* types; /* corresponding array of item types */ member in struct:DexDataMap
|
H A D | SysUtil.h | 23 #include <sys/types.h>
|
/dalvik/dx/src/com/android/dx/dex/file/ |
H A D | AnnotationUtils.java | 150 * @param types {@code non-null;} the list of (the types of) the member classes 153 public static Annotation makeMemberClasses(TypeList types) { argument 154 CstArray array = makeCstArray(types); 226 * @param types {@code non-null;} the list of thrown types 229 public static Annotation makeThrows(TypeList types) { argument 230 CstArray array = makeCstArray(types); 240 * @param types {@code non-null;} the type list 243 private static CstArray makeCstArray(TypeList types) { argument [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
H A D | Rops.java | 1118 * @param sources {@code non-null;} list of source types 1341 * @param types {@code non-null;} source types 1344 public static Rop opIfEq(TypeList types) { argument 1345 return pickIf(types, IF_EQZ_INT, IF_EQZ_OBJECT, 1353 * @param types {@code non-null;} source types 1356 public static Rop opIfNe(TypeList types) { argument 1357 return pickIf(types, IF_NEZ_INT, IF_NEZ_OBJECT, 1365 * @param types { 1368 opIfLt(TypeList types) argument 1379 opIfGe(TypeList types) argument 1390 opIfGt(TypeList types) argument 1401 opIfLe(TypeList types) argument 1417 pickIf(TypeList types, Rop intZ, Rop objZ, Rop intInt, Rop objObj) argument 1461 opAdd(TypeList types) argument 1474 opSub(TypeList types) argument 1487 opMul(TypeList types) argument 1500 opDiv(TypeList types) argument 1513 opRem(TypeList types) argument 1526 opAnd(TypeList types) argument 1538 opOr(TypeList types) argument 1550 opXor(TypeList types) argument 1562 opShl(TypeList types) argument 1574 opShr(TypeList types) argument 1586 opUshr(TypeList types) argument 1606 pickBinaryOp(TypeList types, Rop int1, Rop long1, Rop float1, Rop double1, Rop int2, Rop long2, Rop float2, Rop double2) argument 2083 throwBadTypes(TypeList types) argument [all...] |
/dalvik/dvz/ |
H A D | dvz.c | 23 #include <sys/types.h>
|
/dalvik/dx/src/com/android/dx/cf/code/ |
H A D | BaseMachine.java | 133 StdTypeList types = prototype.getParameterTypes(); 134 int size = types.size(); 139 // ...and then verify the popped types. 142 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) { 144 ", expected type " + types.getType(i).toHuman() + 166 // ...and then verify the popped types. 185 // ...and then verify the popped types. 391 // The result and local types are inconsistent. Complain! 530 * types.
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
H A D | DexData.java | 200 protoId.types = new int[0]; 205 protoId.types = new int[size]; 208 protoId.types[j] = readShort() & 0xffff; 325 String[] result = new String[protoId.types.length]; 327 for (int i = 0; i < protoId.types.length; i++) { 328 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx]; 563 public int types[]; // contents of type list field in class:DexData.ProtoIdItem
|
/dalvik/tests/031-class-attributes/src/ |
H A D | ClassAttrs.java | 183 private static String stringifyTypeArray(Type[] types) { argument 187 stb.append("[" + types.length + "]"); 189 for (Type t: types) {
|
/dalvik/vm/ |
H A D | Misc.h | 26 #include <sys/types.h>
|
H A D | Thread.c | 27 #include <sys/types.h>
|
/dalvik/vm/arch/sh/ |
H A D | CallSH4ABI.S | 111 ## other 32bit arg types 350 ## check return value types 368 ## fall-through for other 32 bit java types.
|
/dalvik/vm/interp/ |
H A D | Stack.c | 695 * Copy the args onto the stack. Primitive types are converted when 696 * necessary, and object types are verified. 699 ClassObject** types; local 703 types = (ClassObject**) params->contents; 707 width = dvmConvertArgument(*args++, *types++, ins); 712 (*(types-1))->descriptor);
|
/dalvik/vm/native/ |
H A D | dalvik_system_Zygote.c | 24 #include <sys/types.h>
|
/dalvik/vm/jdwp/ |
H A D | JdwpSocket.c | 28 #include <sys/types.h>
|
/dalvik/vm/oo/ |
H A D | Class.c | 36 #include <sys/types.h> 4404 * mixing reference types with identical names (see Dalvik test 068).
|