Searched defs:version (Results 1 - 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/command/
H A DMain.java60 " dx --version\n" +
61 " Print the version of this tool (" + Version.VERSION +
103 } else if (arg.equals("--version")) {
104 version();
145 * Prints the version message.
147 private static void version() { method in class:Main
148 System.err.println("dx version " + Version.VERSION);
/dalvik/vm/
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 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_VERSION_1_2 && version != JNI_VERSION_1_4 &&
442 version != JNI_VERSION_1_6)
444 ALOGW("JNI_OnLoad returned bad version (%d) in %s %p",
445 version, pathName, classLoader);
H A DCheckJni.cpp18 * Support for -Xcheck:jni (the "careful" version of the JNI interfaces).
2040 static jint Check_GetEnv(JavaVM* vm, void** env, jint version) { argument
2043 return CHECK_JNI_EXIT("I", baseVm(vm)->GetEnv(vm, env, version));
H A DJni.cpp46 "check" version. For actions that are common, dangerous, and must be
1177 * Return the version of the native method interface.
1210 * We have to use the "no init" version of FindClass here, because we might
2740 * (The "check" version should verify that this is actually a Buffer,
2808 argsCopy.version = JNI_VERSION_1_2;
2812 assert(args->version >= JNI_VERSION_1_2);
2814 argsCopy.version = args->version;
2886 * JVMTI overloads this by specifying a magic value for "version", so we
2889 static jint GetEnv(JavaVM* vm, void** env, jint version) { argument
[all...]
/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/libdex/
H A DDexSwapVerify.cpp2788 const u1* version = &magic[4]; local
2796 if ((memcmp(version, DEX_MAGIC_VERS, 4) != 0) &&
2797 (memcmp(version, DEX_MAGIC_VERS_API_13, 4) != 0)) {
2802 ALOGE("ERROR: unsupported dex version (%02x %02x %02x %02x)",
2803 version[0], version[1], version[2], version[3]);
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 1945 milliseconds