Searched refs:version (Results 1 - 18 of 18) sorted by relevance

/dalvik/dx/tests/003-magic-version-access/
H A Drun26 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
[all...]
/dalvik/vm/
H A DAtomicCache.cpp19 * and a 32-bit version.
106 * NOTE: we don't deal with the situation where we overflow the version
113 (volatile s4*) &pEntry->version) != 0)
138 * is always consistent when the version number is even.
143 pEntry->version = newVersion;
150 android_atomic_release_store(newVersion, (int32_t*) &pEntry->version);
154 * pEntry->version, so if this fails the world is broken.
159 (volatile s4*) &pEntry->version) != 0)
H A DAtomicCache.h38 volatile u4 version; /* version and lock flag */ member in struct:AtomicCacheEntry
69 * (2) Have a "version" that gets incremented atomically when a write
70 * begins and again when it completes. Compare the version before
105 firstVersion = android_atomic_acquire_load((int32_t*)&pEntry->version); \
109 * The fields match. Get the value, then read the version a \
115 secondVersion = pEntry->version; \
H A DJniInternal.h28 bool dvmIsBadJniVersion(int version);
H A DNative.cpp362 * The current version of the dynamic linker prints detailed information
416 int version; local
437 version = (*func)(gDvmJni.jniVm, NULL);
441 if (version == JNI_ERR) {
444 } else if (dvmIsBadJniVersion(version)) {
445 *detail = strdup(StringPrintf("Bad JNI version returned from JNI_OnLoad in \"%s\": %d",
446 pathName, version).c_str());
H A DAndroid.mk42 # Build the installed version (libdvm.so) first
50 # Define WITH_ADDRESS_SANITIZER to build an ASan-instrumented version of the
H A DJni.cpp47 "check" version. For actions that are common, dangerous, and must be
288 bool dvmIsBadJniVersion(int version) { argument
290 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6;
1181 * Return the version of the native method interface.
1214 * We have to use the "no init" version of FindClass here, because we might
2750 * (The "check" version should verify that this is actually a Buffer,
2818 argsCopy.version = JNI_VERSION_1_2;
2822 if (dvmIsBadJniVersion(args->version)) {
2904 GetEnv(JavaVM* vm, void** env, jint version) argument
[all...]
H A DCheckJni.cpp18 * Support for -Xcheck:jni (the "careful" version of the JNI interfaces).
831 if (args != NULL && args->version < JNI_VERSION_1_2) {
832 ALOGW("JNI WARNING: bad value for JNI version (%d) (%s)", args->version, mFunctionName);
2047 static jint Check_GetEnv(JavaVM* vm, void** env, jint version) { argument
2050 return CHECK_JNI_EXIT("I", baseVm(vm)->GetEnv(vm, env, version));
H A DDvm.mk40 # Make a debugging version when building the simulator (if not told
H A DThread.cpp1723 jniArgs.version = JNI_VERSION_1_2;
/dalvik/dx/src/com/android/dx/command/
H A DMain.java72 " dx --version\n" +
73 " Print the version of this tool (" + Version.VERSION +
115 } else if (arg.equals("--version")) {
116 version();
157 * Prints the version message.
159 private static void version() { method in class:Main
160 System.err.println("dx version " + Version.VERSION);
/dalvik/libdex/
H A DAndroid.mk44 ## Build the device version of libdex
47 ifneq ($(SDK_ONLY),true) # SDK_only doesn't need device version
63 ## Build the host version of libdex
H A DDexSwapVerify.cpp2800 const u1* version = &magic[4]; local
2808 if ((memcmp(version, DEX_MAGIC_VERS, 4) != 0) &&
2809 (memcmp(version, DEX_MAGIC_VERS_API_13, 4) != 0)) {
2814 ALOGE("ERROR: unsupported dex version (%02x %02x %02x %02x)",
2815 version[0], version[1], version[2], version[3]);
/dalvik/dexdump/
H A DAndroid.mk36 ifneq ($(SDK_ONLY),true) # SDK_only doesn't need device version
/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c40 short version; member in struct:DataHeader
51 char *versionHeader = "*version\n";
371 header.version = versionNumber;
373 write2LE(dataFp, header.version);
458 fprintf(stderr, "Error: version number (%d) must be 1 or 2\n",
481 fprintf(stderr, "Usage: %s [-v version] [-d] input_file trace_prefix\n",
H A DTraceDump.c121 short version; member in struct:DataHeader
652 * Parse the "*version" section.
665 next = checkToken(data, dataEnd - data, "version");
672 * Count the number of items in the "version" section.
677 "ERROR: failed while reading version (found %d)\n", count);
1074 pHeader->version = read2LE(fp);
1078 if (pHeader->version == 1) {
1080 } else if (pHeader->version == 2) {
1082 } else if (pHeader->version == 3) {
1086 fprintf(stderr, "Unsupported trace file version
[all...]
/dalvik/vm/native/
H A Ddalvik_system_Zygote.cpp436 capheader.version = _LINUX_CAPABILITY_VERSION;
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 870 milliseconds