Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 44) sorted by relevance

12

/art/compiler/
Dbuffered_output_stream.cc32 bool success = Flush(); in WriteFully() local
33 if (!success) { in WriteFully()
44 bool success = true; in Flush() local
46 success = out_->WriteFully(&buffer_[0], used_); in Flush()
49 return success; in Flush()
Dimage_test.cc85 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), in TEST_F() local
90 ASSERT_TRUE(success); in TEST_F()
Doat_test.cc127 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), in TEST_F() local
132 ASSERT_TRUE(success); in TEST_F()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc573 bool success = in ExecuteGotoImpl() local
576 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3); in ExecuteGotoImpl()
581 bool success = in ExecuteGotoImpl() local
584 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3); in ExecuteGotoImpl()
1227 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>(self, s… in ExecuteGotoImpl() local
1228 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 2); in ExecuteGotoImpl()
1233 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimByte, do_access_check>(self, shad… in ExecuteGotoImpl() local
1234 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 2); in ExecuteGotoImpl()
1239 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>(self, shad… in ExecuteGotoImpl() local
1240 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 2); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc487 bool success = in ExecuteSwitchImpl() local
490 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx); in ExecuteSwitchImpl()
495 bool success = in ExecuteSwitchImpl() local
498 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx); in ExecuteSwitchImpl()
1125 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>(self, s… in ExecuteSwitchImpl() local
1126 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_2xx); in ExecuteSwitchImpl()
1131 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimByte, do_access_check>(self, shad… in ExecuteSwitchImpl() local
1132 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_2xx); in ExecuteSwitchImpl()
1137 …bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>(self, shad… in ExecuteSwitchImpl() local
1138 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_2xx); in ExecuteSwitchImpl()
[all …]
/art/runtime/arch/arm64/
Dcontext_arm64.h40 bool success = SetGPR(SP, new_sp); in SetSP() local
41 CHECK(success) << "Failed to set SP register"; in SetSP()
45 bool success = SetGPR(LR, new_lr); in SetPC() local
46 CHECK(success) << "Failed to set LR register"; in SetPC()
/art/test/067-preemptive-unpark/src/
DMain.java33 if (test.success) { in main()
84 public volatile boolean success = false; field in Main.ParkTester
101 success = false; in run()
104 success = true; in run()
/art/runtime/
Ddex_file_verifier_test.cc126 bool success = DexFile::Open(location, location, error_msg, &tmp); in OpenDexFileBase64() local
127 CHECK(success) << error_msg; in OpenDexFileBase64()
222 bool success = !ModifyAndLoad(tmp.GetFilename().c_str(), 220, 0xFFU, &error_msg); in TEST_F() local
223 ASSERT_TRUE(success); in TEST_F()
231 bool success = !ModifyAndLoad(tmp.GetFilename().c_str(), 222, 0xFFU, &error_msg); in TEST_F() local
232 ASSERT_TRUE(success); in TEST_F()
240 bool success = !ModifyAndLoad(tmp.GetFilename().c_str(), 224, 0xFFU, &error_msg); in TEST_F() local
241 ASSERT_TRUE(success); in TEST_F()
Dstack.cc170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val); in GetVReg() local
171 if (!success) { in GetVReg()
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo); in GetVRegPair() local
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi); in GetVRegPair()
228 if (!success) { in GetVRegPair()
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val); in SetVReg() local
278 if (!success) { in SetVReg()
342 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo); in SetVRegPair() local
343 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi); in SetVRegPair()
344 if (!success) { in SetVRegPair()
[all …]
Dsignal_catcher.cc112 bool success = file->WriteFully(s.data(), s.size()); in Output() local
113 if (success) { in Output()
114 success = file->FlushCloseOrErase() == 0; in Output()
118 if (success) { in Output()
Dzip_archive_test.cc46 bool success = zip_entry->ExtractToFile(*file, &error_msg); in TEST_F() local
47 ASSERT_TRUE(success) << error_msg; in TEST_F()
Ddex_file_verifier.cc1419 uint16_t DexFileVerifier::FindFirstClassDataDefiner(const byte* ptr, bool* success) { in FindFirstClassDataDefiner() argument
1421 *success = true; in FindFirstClassDataDefiner()
1425 *success = false; return DexFile::kDexNoIndex16) in FindFirstClassDataDefiner()
1431 *success = false; return DexFile::kDexNoIndex16) in FindFirstClassDataDefiner()
1438 uint16_t DexFileVerifier::FindFirstAnnotationsDirectoryDefiner(const byte* ptr, bool* success) { in FindFirstAnnotationsDirectoryDefiner() argument
1441 *success = true; in FindFirstAnnotationsDirectoryDefiner()
1446 *success = false; return DexFile::kDexNoIndex16) in FindFirstAnnotationsDirectoryDefiner()
1453 *success = false; return DexFile::kDexNoIndex16) in FindFirstAnnotationsDirectoryDefiner()
1460 *success = false; return DexFile::kDexNoIndex16) in FindFirstAnnotationsDirectoryDefiner()
1763 bool success; in CheckInterClassDefItem() local
[all …]
Ddex_file_verifier.h84 uint16_t FindFirstClassDataDefiner(const byte* ptr, bool* success);
85 uint16_t FindFirstAnnotationsDirectoryDefiner(const byte* ptr, bool* success);
Dmethod_helper.cc85 bool success = other_dexfile.CreateTypeList( in FindDexMethodIndexInOtherDexFile() local
88 if (success) { in FindDexMethodIndexInOtherDexFile()
Doat_file.cc120 bool success = oat_file->Dlopen(elf_filename, requested_base, error_msg); in OpenDlopen() local
121 if (!success) { in OpenDlopen()
135 bool success = oat_file->ElfFileOpen(file, requested_base, oat_file_begin, writable, executable, in OpenElfFile() local
137 if (!success) { in OpenElfFile()
/art/runtime/arch/arm/
Dcontext_arm.h40 bool success = SetGPR(SP, new_sp); in SetSP() local
41 CHECK(success) << "Failed to set SP register"; in SetSP()
45 bool success = SetGPR(PC, new_pc); in SetPC() local
46 CHECK(success) << "Failed to set PC register"; in SetPC()
Dquick_entrypoints_arm.S615 cbnz r1, 1f @ success if no exception pending
616 bx lr @ return on success
633 cbnz r2, 1f @ success if no exception pending
634 bx lr @ return on success
651 cbnz r1, 1f @ success if no exception pending
652 bx lr @ return on success
671 cbnz r1, 1f @ success if no exception pending
672 bx lr @ return on success
694 cbnz r2, 1f @ success if no exception pending
695 bx lr @ return on success
[all …]
/art/runtime/arch/mips/
Dcontext_mips.h39 bool success = SetGPR(SP, new_sp); in SetSP() local
40 CHECK(success) << "Failed to set SP register"; in SetSP()
44 bool success = SetGPR(RA, new_pc); in SetPC() local
45 CHECK(success) << "Failed to set RA register"; in SetPC()
/art/runtime/arch/x86/
Dcontext_x86.h39 bool success = SetGPR(ESP, new_sp); in SetSP() local
40 CHECK(success) << "Failed to set ESP register"; in SetSP()
/art/runtime/arch/x86_64/
Dcontext_x86_64.h39 bool success = SetGPR(RSP, new_sp); in SetSP() local
40 CHECK(success) << "Failed to set RSP register"; in SetSP()
/art/runtime/native/
Dsun_misc_Unsafe.cc31 bool success = obj->CasFieldStrongSequentiallyConsistent32<false>(MemberOffset(offset), in Unsafe_compareAndSwapInt() local
33 return success ? JNI_TRUE : JNI_FALSE; in Unsafe_compareAndSwapInt()
41 bool success = obj->CasFieldStrongSequentiallyConsistent64<false>(MemberOffset(offset), in Unsafe_compareAndSwapLong() local
43 return success ? JNI_TRUE : JNI_FALSE; in Unsafe_compareAndSwapLong()
53 bool success = obj->CasFieldStrongSequentiallyConsistentObject<false>(MemberOffset(offset), in Unsafe_compareAndSwapObject() local
55 return success ? JNI_TRUE : JNI_FALSE; in Unsafe_compareAndSwapObject()
Djava_lang_Runtime.cc74 bool success = vm->LoadNativeLibrary(filename.c_str(), classLoader, &detail); in Runtime_nativeLoad() local
75 if (success) { in Runtime_nativeLoad()
/art/oatdump/
Doatdump.cc163 bool success = true; in Dump() local
253 success = false; in Dump()
257 return success; in Dump()
362 bool success = true; in DumpOatDexFile() local
391 success = false; in DumpOatDexFile()
396 return success; in DumpOatDexFile()
410 bool success = true; in DumpOatClass() local
414 return success; in DumpOatClass()
423 success = false; in DumpOatClass()
432 success = false; in DumpOatClass()
[all …]
/art/test/014-math3/
Dexpected.txt1 testMath3 success
/art/runtime/gc/space/
Dimage_space.cc243 const bool success = image_file->ReadFully(image_header, sizeof(ImageHeader)); in ReadSpecificImageHeader() local
244 if (!success || !image_header->IsValid()) { in ReadSpecificImageHeader()
478 bool success; in Create() local
483 success = false; in Create()
486 success = false; in Create()
489 success = RelocateImage(image_location, cache_filename.c_str(), image_isa, &reason); in Create()
492 if (success) { in Create()
642 bool success = file->ReadFully(&image_header, sizeof(image_header)); in Init() local
643 if (!success || !image_header.IsValid()) { in Init()

12