Home
last modified time | relevance | path

Searched refs:methodHandleType (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dex/
DMethodHandle.java50 for (MethodHandleType methodHandleType : values()) { in fromValue()
51 if (methodHandleType.value == value) { in fromValue()
52 return methodHandleType; in fromValue()
72 private final MethodHandleType methodHandleType; field in MethodHandle
79 MethodHandleType methodHandleType, in MethodHandle() argument
84 this.methodHandleType = methodHandleType; in MethodHandle()
92 if (methodHandleType != o.methodHandleType) { in compareTo()
93 return methodHandleType.compareTo(o.methodHandleType); in compareTo()
99 return methodHandleType; in getMethodHandleType()
115 out.writeUnsignedShort(methodHandleType.value); in writeTo()
[all …]
DDex.java449 MethodHandleType methodHandleType = MethodHandleType.fromValue(readUnsignedShort()); in readMethodHandle() local
453 return new MethodHandle(Dex.this, methodHandleType, unused1, fieldOrMethodId, unused2); in readMethodHandle()
/dalvik/dx/src/com/android/dx/cf/cst/
DConstantPoolParser.java370 final int methodHandleType = getMethodHandleTypeForKind(kind); in parse0() local
371 cst = CstMethodHandle.make(methodHandleType, ref); in parse0()
/dalvik/libdex/
DDexSwapVerify.cpp1071 if (item->methodHandleType > (u2) MethodHandleType::INVOKE_INTERFACE) { in crossVerifyMethodHandleItem()
1072 ALOGE("Unknown method handle type: %u", item->methodHandleType); in crossVerifyMethodHandleItem()
1075 switch ((MethodHandleType) item->methodHandleType) { in crossVerifyMethodHandleItem()
1240 SWAP_FIELD2(item->methodHandleType); in swapMethodHandleItem()
DDexFile.h403 u2 methodHandleType; /* type of method handle */ member
/dalvik/dexdump/
DDexDump.cpp1874 switch ((MethodHandleType) mh.methodHandleType) { in dumpMethodHandles()
1921 printf("Unknown method handle type 0x%02x, skipped.", mh.methodHandleType); in dumpMethodHandles()