Searched refs:version (Results 1 – 15 of 15) sorted by relevance
/art/tools/ |
D | stream-trace-converter.py | 85 version = ReadShortLE(input) 86 if (version & 0xf0) != 0xf0: 87 raise MyException("Does not seem to be a streaming trace: %d." % version) 88 version = version ^ 0xf0 90 if version != 3: 93 WriteShortLE(body, version) 102 if version == 1: 104 elif version == 2:
|
D | libcore_failures.txt | 87 description: "Needs the newest cat version on the device",
|
/art/runtime/ |
D | java_vm_ext.cc | 51 static bool IsBadJniVersion(int version) { in IsBadJniVersion() argument 53 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6; in IsBadJniVersion() 286 static jint GetEnv(JavaVM* vm, void** env, jint version) { in GetEnv() argument 290 if (IsBadJniVersion(version) && version != JNI_VERSION_1_1) { in GetEnv() 291 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version; in GetEnv() 331 if (IsBadJniVersion(args->version)) { in AttachCurrentThreadInternal() 334 << args->version; in AttachCurrentThreadInternal() 711 int version = (*jni_on_load)(this, nullptr); in LoadNativeLibrary() local 719 if (version == JNI_ERR) { in LoadNativeLibrary() 721 } else if (IsBadJniVersion(version)) { in LoadNativeLibrary() [all …]
|
D | common_runtime_test.cc | 220 float version; in GetAndroidToolsDir() local 221 if (std::sscanf(entry->d_name, format.c_str(), &version) == 1) { in GetAndroidToolsDir() 222 if (version > maxversion) { in GetAndroidToolsDir() 223 maxversion = version; in GetAndroidToolsDir()
|
D | runtime.h | 518 void SetTargetSdkVersion(int32_t version) { in SetTargetSdkVersion() argument 519 target_sdk_version_ = version; in SetTargetSdkVersion()
|
D | dex_file.cc | 464 const uint8_t* version = &magic[sizeof(kDexMagic)]; in IsVersionValid() local 465 return (memcmp(version, kDexMagicVersion, sizeof(kDexMagicVersion)) == 0); in IsVersionValid() 469 const char* version = reinterpret_cast<const char*>(&GetHeader().magic_[sizeof(kDexMagic)]); in GetVersion() local 470 return atoi(version); in GetVersion()
|
D | check_jni.cc | 3664 static jint GetEnv(JavaVM* vm, void** p_env, jint version) { in GetEnv() argument 3666 JniValueType args[3] = {{.v = vm}, {.p = p_env}, {.I = version}}; in GetEnv() 3669 result.i = BaseVm(vm)->GetEnv(vm, p_env, version); in GetEnv()
|
/art/test/107-int-math2/ |
D | info.txt | 1 A forked and extended version of IntMath from 003-omnibus-opcodes.
|
/art/test/087-gc-after-link/ |
D | info.txt | 7 This test is a modified version of test 086.
|
/art/dalvikvm/ |
D | dalvikvm.cc | 169 init_args.version = JNI_VERSION_1_6; in dalvikvm()
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 418 .version = 2,
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 20 extern "C" void android_set_application_target_sdk_version(uint32_t version);
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 128 std::string version(StringPrintf("Android Runtime %s", Runtime::Current()->GetVersion())); in VM_Version() local 129 expandBufAddUtf8String(pReply, version); in VM_Version()
|
/art/cmdline/ |
D | README.md | 231 `Result` is a typedef for `CmdlineParseResult<T>` and it acts similar to a poor version of
|
/art/ |
D | NOTICE | 62 the original version of the Work and any modifications or additions
|