/dalvik/dx/tests/003-magic-version-access/ |
D | run | 26 dx --dump --strict class-version-44.0.txt 27 dx --dump --strict class-version-44.65535.txt 30 dx --debug --dump --width=100 class-version-45.0.txt 31 dx --debug --dump --width=100 class-version-45.65535.txt 32 dx --debug --dump --width=100 class-version-48.0.txt 33 dx --debug --dump --width=100 class-version-48.65535.txt 34 dx --debug --dump --width=100 class-version-49.0.txt 35 dx --debug --dump --width=100 class-version-49.1.txt 36 dx --debug --dump --width=100 class-version-49.65535.txt 37 dx --debug --dump --width=100 class-version-50.0.txt [all …]
|
D | expected.txt | 8 bad class file magic (deadbabe) or version (0031.0000) 10 reading class-version-44.0.txt... 17 bad class file magic (cafebabe) or version (002c.0000) 18 ...while parsing class-version-44.0.txt 19 reading class-version-44.65535.txt... 26 bad class file magic (cafebabe) or version (002c.ffff) 27 ...while parsing class-version-44.65535.txt 28 reading class-version-45.0.txt... 49 reading class-version-45.65535.txt... 70 reading class-version-48.0.txt... [all …]
|
D | class-version-49.65535.txt | 2 # classfile with an invalid version, with the same major version 3 # as the highest valid version. 49.65535 (0x31.0xffff)
|
D | class-version-50.1.txt | 2 # classfile with an invalid version, with a higher major version 3 # than the highest valid version. 50.0 (0x32.0x00)
|
D | class-version-51.0.txt | 2 # classfile with an invalid version, with a higher major version 3 # than the highest valid version. 50.0 (0x32.0x00)
|
D | class-version-50.65535.txt | 2 # classfile with an invalid version, with a higher major version 3 # than the highest valid version. 50.0 (0x32.0x00)
|
D | class-version-50.0.txt | 2 # classfile with an invalid version, with a higher major version 3 # than the highest valid version. 50.0 (0x32.0x00)
|
D | class-version-49.1.txt | 2 # classfile with a minor version 1 higher than the highest valid 3 # version. 49.1 (0x31.0x01)
|
D | class-version-48.0.txt | 2 # classfile with the valid version 48.0 (0x30.0x00)
|
D | class-version-44.0.txt | 2 # classfile with an out-of-range version.
|
D | class-version-49.0.txt | 2 # classfile with the highest valid version, 49.0 (0x31.0x00)
|
D | class-version-48.65535.txt | 2 # classfile with the valid version 48.65535 (0x30.0xffff)
|
D | class-version-45.65535.txt | 2 # classfile with the valid version 45.65535 (0x2d.0xffff)
|
D | class-version-45.0.txt | 2 # classfile with the lowest valid version, 45.0 (0x2d.0x00)
|
D | class-version-44.65535.txt | 2 # classfile with an out-of-range version.
|
D | info.txt | 8 * major / minor version numbers
|
/dalvik/dx/src/com/android/dx/dex/ |
D | DexFormat.java | 73 String version = "" + ((char) magic[4]) + ((char) magic[5]) +((char) magic[6]); in magicToApi() local 75 if (version.equals(VERSION_CURRENT)) { in magicToApi() 77 } else if (version.equals(VERSION_FOR_API_13)) { in magicToApi() 88 String version; in apiToMagic() local 91 version = VERSION_CURRENT; in apiToMagic() 93 version = VERSION_FOR_API_13; in apiToMagic() 96 return MAGIC_PREFIX + version + MAGIC_SUFFIX; in apiToMagic()
|
/dalvik/vm/ |
D | AtomicCache.cpp | 111 (volatile s4*) &pEntry->version) != 0) in dvmUpdateAtomicCache() 141 pEntry->version = newVersion; in dvmUpdateAtomicCache() 148 android_atomic_release_store(newVersion, (int32_t*) &pEntry->version); in dvmUpdateAtomicCache() 157 (volatile s4*) &pEntry->version) != 0) in dvmUpdateAtomicCache()
|
D | AtomicCache.h | 38 volatile u4 version; /* version and lock flag */ member 105 firstVersion = android_atomic_acquire_load((int32_t*)&pEntry->version); \ 115 secondVersion = pEntry->version; \
|
/dalvik/dx/src/com/android/dx/command/ |
D | Main.java | 104 version(); in main() 147 private static void version() { in version() method in Main
|
/dalvik/dx/tests/098-dex-jsr-ret-throw/ |
D | info.txt | 1 The enclosed class file was generated with javac version 1.5.0_13-b05.
|
/dalvik/dx/tests/091-ssa-const-collector/ |
D | info.txt | 4 version, so it is possible for this test to spuriously fail if other
|
/dalvik/dx/tests/092-ssa-cfg-edge-cases/ |
D | info.txt | 4 version, so it is possible for this test to spuriously fail if other
|
/dalvik/dx/tests/109-int-branch/ |
D | info.txt | 5 version, so it is possible for this test to spuriously fail if other
|
/dalvik/dx/tests/083-ssa-phi-placement/ |
D | info.txt | 4 version, so it is possible for this test to spuriously fail if other
|