Searched defs:version (Results 1 - 9 of 9) sorted by relevance
/dalvik/dx/src/com/android/dx/command/ |
H A D | Main.java | 72 " 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/vm/ |
H A D | AtomicCache.h | 38 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 D | Native.cpp | 362 * 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 D | CheckJni.cpp | 18 * 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 D | Jni.cpp | 47 "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...] |
/dalvik/tools/dmtracedump/ |
H A D | CreateTestTrace.c | 40 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 D | TraceDump.c | 121 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/libdex/ |
H A D | DexSwapVerify.cpp | 2800 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/dx/etc/ |
H A D | jasmin.jar | META-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ... |
Completed in 192 milliseconds