Home
last modified time | relevance | path

Searched refs:ret (Results 101 – 125 of 166) sorted by relevance

1234567

/art/runtime/arch/x86_64/
Dmemcmp16_x86_64.S789 ret
804 ret
845 ret
858 ret
874 ret
910 ret
946 ret
982 ret
1059 ret
1099 ret
[all …]
/art/runtime/
Doat_file.cc205 std::unique_ptr<OatFileBase> ret(new kOatFileBaseSubType(location, executable)); in OpenOatFile() local
207 ret->PreLoad(); in OpenOatFile()
209 if (!ret->Load(elf_filename, in OpenOatFile()
218 if (!ret->ComputeFields(elf_filename, error_msg)) { in OpenOatFile()
222 ret->PreSetup(elf_filename); in OpenOatFile()
224 if (!ret->LoadVdex(vdex_filename, writable, low_4gb, error_msg)) { in OpenOatFile()
228 if (!ret->Setup(zip_fd, dex_filenames, error_msg)) { in OpenOatFile()
232 return ret.release(); in OpenOatFile()
247 std::unique_ptr<OatFileBase> ret(new kOatFileBaseSubType(oat_location, executable)); in OpenOatFile() local
249 if (!ret->Load(oat_fd, in OpenOatFile()
[all …]
Dthread-inl.h310 mirror::Object* ret = reinterpret_cast<mirror::Object*>(tlsPtr_.thread_local_pos); in AllocTlab() local
312 return ret; in AllocTlab()
Dclass_table.cc268 const size_t ret = combined.WriteToMemory(ptr); in WriteToMemory() local
275 return ret; in WriteToMemory()
Doat_file_assistant.cc682 std::unique_ptr<gc::space::ImageSpace> ret = in OpenImageSpace() local
684 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) { in OpenImageSpace()
687 return ret; in OpenImageSpace()
Dcommon_dex_operations.h172 HandleWrapper<mirror::Object> ret(hs.NewHandleWrapper<mirror::Object>( in DoFieldPutCommon()
Dart_method.cc76 ArtMethod* ret = declaring_class->FindInterfaceMethod(GetDexCache(), in GetCanonicalMethod() local
79 DCHECK(ret != nullptr); in GetCanonicalMethod()
80 return ret; in GetCanonicalMethod()
/art/dex2oat/
Ddex2oat_image_test.cc88 ImageSizes ret; in CompileImageAndGetSizes() local
106 ret.art_size = art_size; in CompileImageAndGetSizes()
107 ret.oat_size = oat_size; in CompileImageAndGetSizes()
108 ret.vdex_size = vdex_size; in CompileImageAndGetSizes()
109 return ret; in CompileImageAndGetSizes()
/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc65 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F() local
66 block->AddInstruction(ret); in TEST_F()
Doptimizing_cfi_test_expected.inc64 // 0x00000020: ret
94 // 0x0000000b: ret
135 // 0x00000028: ret
/art/runtime/interpreter/
Dinterpreter.cc281 JValue ret = JValue(); in Execute() local
285 ret, in Execute()
290 return ret; in Execute()
297 JValue ret = JValue(); in Execute() local
303 ret, in Execute()
309 return ret; in Execute()
/art/openjdkjvmti/
Dti_method.cc330 jvmtiError ret; in GetMethodName() local
331 name_copy = CopyString(env, method_name, &ret); in GetMethodName()
333 return ret; in GetMethodName()
342 jvmtiError ret; in GetMethodName() local
343 signature_copy = CopyString(env, str.c_str(), &ret); in GetMethodName()
345 return ret; in GetMethodName()
361 jvmtiError ret; in GetMethodName() local
362 JvmtiUniquePtr<char[]> generic_copy = CopyString(env, output_string.c_str(), &ret); in GetMethodName()
364 return ret; in GetMethodName()
Dtransform.cc364 jint ret = env->art_vm->GetEnv(reinterpret_cast<void**>(&jni_env), JNI_VERSION_1_1); in GetClassLocation() local
365 if (ret != JNI_OK) { in GetClassLocation()
DOpenjdkJvmTi.cc1140 jvmtiError ret = OK; in AddCapabilities() local
1143 ret = env->GetPotentialCapabilities(&potential_capabilities); in AddCapabilities()
1144 if (ret != OK) { in AddCapabilities()
1145 return ret; in AddCapabilities()
1156 ret = ERR(NOT_AVAILABLE); \ in AddCapabilities()
1166 return ret; in AddCapabilities()
/art/runtime/mirror/
Dclass_ext-inl.h69 ObjPtr<Object> ret( in EnsureJniIdsArrayPresent()
72 CHECK(!ret.IsNull()); in EnsureJniIdsArrayPresent()
Dclass.cc180 ObjPtr<ClassExt> ret(set ? new_ext.Get() : h_this->GetExtData()); in EnsureExtDataPresent() local
182 CHECK(!ret.IsNull()); in EnsureExtDataPresent()
187 return ret; in EnsureExtDataPresent()
943 ArtField* ret = nullptr; in FindFieldByNameAndType() local
961 ret = &field; in FindFieldByNameAndType()
973 CHECK_EQ(found, ret) << "Found " << found->PrettyField() << " vs " << ret->PrettyField(); in FindFieldByNameAndType()
975 return ret; in FindFieldByNameAndType()
/art/dex2oat/linker/
Dimage_test.h137 std::vector<size_t> ret; in GetImageObjectSectionSizes() local
144 ret.push_back(image_header.GetObjectsSection().Size()); in GetImageObjectSectionSizes()
146 return ret; in GetImageObjectSectionSizes()
/art/runtime/interpreter/mterp/arm64ng/
Dcontrol_flow.S171 ret
/art/runtime/arch/x86/
Djni_entrypoints_x86.S45 ret
/art/test/1970-force-early-return-long/src/art/
DTest1970.java57 long ret = getOveriddenReturnValue(thr); in performForceReturn() local
58 System.out.println("Will force return of " + ret); in performForceReturn()
59 NonStandardExit.forceEarlyReturn(thr, ret); in performForceReturn()
/art/test/1968-force-early-return/src/art/
DTest1968.java84 Object ret = getOveriddenReturnValue(thr); in performForceReturn() local
85 System.out.println("Will force return of " + ret); in performForceReturn()
86 NonStandardExit.forceEarlyReturn(thr, ret); in performForceReturn()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc197 ScopedLocalRef<jobjectArray> ret(env, in VMRuntime_properties() local
201 if (ret == nullptr) { in VMRuntime_properties()
211 env->SetObjectArrayElement(ret.get(), static_cast<jsize>(i), str.get()); in VMRuntime_properties()
214 return ret.release(); in VMRuntime_properties()
/art/dt_fd_forward/
Ddt_fd_forward.cc531 jbyte* ret = HandleResult(res, out, static_cast<jbyte*>(nullptr)); in ReadRemaining() local
532 if (ret != out) { in ReadRemaining()
535 return ret; in ReadRemaining()
/art/compiler/jni/
Djni_cfi_test_expected.inc186 // 0x00000078: ret
235 // 0x00000025: ret
328 // 0x0000007e: ret
/art/runtime/interpreter/mterp/arm64/
Dmain.S754 ret
772 ret

1234567