Searched defs:success (Results 1 - 25 of 43) sorted by relevance

12

/art/runtime/entrypoints/quick/
H A Dquick_fillarray_entrypoints.cc34 bool success = FillArrayData(array, payload); local
35 return success ? 0 : -1;
/art/compiler/
H A Dbuffered_output_stream.cc32 bool success = Flush(); local
33 if (!success) {
44 bool success = true; local
46 success = out_->WriteFully(&buffer_[0], used_);
49 return success;
H A Delf_writer.cc48 bool success = elf_file->GetLoadedSize(oat_loaded_size, &error_msg); local
49 CHECK(success) << error_msg;
H A Dimage_test.cc84 bool success = writer->PrepareImageAddressSpace() && local
90 ASSERT_TRUE(success);
H A Doat_test.cc115 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), local
120 ASSERT_TRUE(success);
/art/runtime/
H A Dzip_archive_test.cc46 bool success = zip_entry->ExtractToFile(*file, &error_msg); local
47 ASSERT_TRUE(success) << error_msg;
H A Ddex_file_verifier_test.cc127 bool success = DexFile::Open(location, location, error_msg, &tmp); local
128 CHECK(success) << error_msg;
224 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 220, 0xFFU, &error_msg); local
225 ASSERT_TRUE(success);
233 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 222, 0xFFU, &error_msg); local
234 ASSERT_TRUE(success);
242 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 224, 0xFFU, &error_msg); local
243 ASSERT_TRUE(success);
312 bool success = !ModifyAndLoad(kDebugInfoTestDex, tmp.GetFilename().c_str(), 416, 0x14U, local
314 ASSERT_TRUE(success);
[all...]
H A Dsignal_catcher.cc115 bool success = file->WriteFully(s.data(), s.size()); local
116 if (success) {
117 success = file->FlushCloseOrErase() == 0;
121 if (success) {
H A Dtransaction_test.cc73 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
75 ASSERT_FALSE(success);
179 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
180 ASSERT_TRUE(success);
277 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
278 ASSERT_TRUE(success);
379 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
380 ASSERT_TRUE(success);
502 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
504 ASSERT_TRUE(success);
526 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true); local
[all...]
H A Ddex_file_test.cc159 bool success = DexFile::Open(location, location, &error_msg, &tmp); local
160 CHECK(success) << error_msg;
H A Dfault_handler.cc225 bool success = true; local
227 success = sigaction(handled_nested_signals[i], &action, &oldactions[i]) == 0;
228 if (!success) {
233 if (success) {
243 success = sigaction(handled_nested_signals[i], &oldactions[i], nullptr) == 0;
244 if (!success) {
258 success = sigaction(handled_nested_signals[i], &oldactions[i], nullptr) == 0;
259 if (!success) {
H A Dcommon_runtime_test.cc461 bool success = DexFile::Open(filename.c_str(), filename.c_str(), &error_msg, &dex_files); local
462 CHECK(success) << "Failed to open '" << filename << "': " << error_msg;
/art/test/067-preemptive-unpark/src/
H A DMain.java33 if (test.success) {
84 public volatile boolean success = false; field in class:Main.ParkTester
101 success = false;
104 success = true;
/art/test/454-get-vreg/
H A Dget_vreg_jni.cc47 bool success = GetVReg(m, 1, kIntVReg, &value); local
48 if (m->IsOptimized(sizeof(void*))) CHECK(!success);
50 success = GetVReg(m, 2, kIntVReg, &value);
51 if (m->IsOptimized(sizeof(void*))) CHECK(!success);
80 bool success = GetVRegPair(m, 2, kLongLoVReg, kLongHiVReg, &value); local
81 if (m->IsOptimized(sizeof(void*))) CHECK(!success);
83 success = GetVRegPair(m, 4, kLongLoVReg, kLongHiVReg, &value);
84 if (m->IsOptimized(sizeof(void*))) CHECK(!success);
/art/test/457-regs/
H A Dregs_jni.cc65 bool success = GetVReg(m, 2, kIntVReg, &value); local
66 if (m->IsOptimized(sizeof(void*))) CHECK(!success);
/art/runtime/native/
H A Djava_lang_Runtime.cc82 bool success = vm->LoadNativeLibrary(env, filename.c_str(), javaLoader, &error_msg); local
83 if (success) {
H A Dsun_misc_Unsafe.cc33 bool success = obj->CasFieldStrongSequentiallyConsistent32<false>(MemberOffset(offset), local
35 return success ? JNI_TRUE : JNI_FALSE;
43 bool success = obj->CasFieldStrongSequentiallyConsistent64<false>(MemberOffset(offset), local
45 return success ? JNI_TRUE : JNI_FALSE;
55 bool success = obj->CasFieldStrongSequentiallyConsistentObject<false>(MemberOffset(offset), local
57 return success ? JNI_TRUE : JNI_FALSE;
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc204 bool success = true; local
208 success = success && (data[i] == buf[i]);
212 success = success && (data[i] == buf[i - trg_offset + start_index]);
216 success = success && (data[i] == buf[i]);
219 EXPECT_TRUE(success);
H A Dinterpreter_goto_table_impl.cc558 bool success = local
561 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3);
566 bool success = local
569 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3);
578 bool success = FillArrayData(obj, payload); local
579 if (transaction_active && success) {
582 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3);
1230 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local
1232 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 2);
1237 bool success local
1244 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>( local
1251 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimShort, do_access_check>( local
1258 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimInt, do_access_check>( local
1265 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimLong, do_access_check>( local
1272 bool success = DoFieldGet<InstanceObjectRead, Primitive::kPrimNot, do_access_check>( local
1279 bool success = DoIGetQuick<Primitive::kPrimInt>(shadow_frame, inst, inst_data); local
1285 bool success = DoIGetQuick<Primitive::kPrimBoolean>(shadow_frame, inst, inst_data); local
1291 bool success = DoIGetQuick<Primitive::kPrimByte>(shadow_frame, inst, inst_data); local
1297 bool success = DoIGetQuick<Primitive::kPrimChar>(shadow_frame, inst, inst_data); local
1303 bool success = DoIGetQuick<Primitive::kPrimShort>(shadow_frame, inst, inst_data); local
1309 bool success = DoIGetQuick<Primitive::kPrimLong>(shadow_frame, inst, inst_data); local
1315 bool success = DoIGetQuick<Primitive::kPrimNot>(shadow_frame, inst, inst_data); local
1321 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local
1328 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimByte, do_access_check>( local
1335 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimChar, do_access_check>( local
1342 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimShort, do_access_check>( local
1349 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimInt, do_access_check>( local
1356 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimLong, do_access_check>( local
1363 bool success = DoFieldGet<StaticObjectRead, Primitive::kPrimNot, do_access_check>( local
1370 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local
1377 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimByte, do_access_check, local
1384 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimChar, do_access_check, local
1391 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimShort, do_access_check, local
1398 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimInt, do_access_check, local
1405 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimLong, do_access_check, local
1412 bool success = DoFieldPut<InstanceObjectWrite, Primitive::kPrimNot, do_access_check, local
1419 bool success = DoIPutQuick<Primitive::kPrimInt, transaction_active>( local
1426 bool success = DoIPutQuick<Primitive::kPrimBoolean, transaction_active>( local
1433 bool success = DoIPutQuick<Primitive::kPrimByte, transaction_active>( local
1440 bool success = DoIPutQuick<Primitive::kPrimChar, transaction_active>( local
1447 bool success = DoIPutQuick<Primitive::kPrimShort, transaction_active>( local
1454 bool success = DoIPutQuick<Primitive::kPrimLong, transaction_active>( local
1461 bool success = DoIPutQuick<Primitive::kPrimNot, transaction_active>( local
1468 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local
1475 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimByte, do_access_check, local
1482 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimChar, do_access_check, local
1489 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimShort, do_access_check, local
1496 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimInt, do_access_check, local
1503 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimLong, do_access_check, local
1510 bool success = DoFieldPut<StaticObjectWrite, Primitive::kPrimNot, do_access_check, local
1517 bool success = DoInvoke<kVirtual, false, do_access_check>( local
1525 bool success = DoInvoke<kVirtual, true, do_access_check>( local
1533 bool success = DoInvoke<kSuper, false, do_access_check>( local
1541 bool success = DoInvoke<kSuper, true, do_access_check>( local
1549 bool success = DoInvoke<kDirect, false, do_access_check>( local
1557 bool success = DoInvoke<kDirect, true, do_access_check>( local
1565 bool success = DoInvoke<kInterface, false, do_access_check>( local
1573 bool success = DoInvoke<kInterface, true, do_access_check>( local
1581 bool success = DoInvoke<kStatic, false, do_access_check>( local
1589 bool success = DoInvoke<kStatic, true, do_access_check>( local
1597 bool success = DoInvokeVirtualQuick<false>( local
1605 bool success = DoInvokeVirtualQuick<true>( local
1768 bool success = DoIntDivide(shadow_frame, inst->VRegA_23x(inst_data), local
1776 bool success = DoIntRemainder(shadow_frame, inst->VRegA_23x(inst_data), local
1847 bool success = DoLongDivide(shadow_frame, inst->VRegA_23x(inst_data), local
1855 bool success = DoLongRemainder(shadow_frame, inst->VRegA_23x(inst_data), local
2003 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local
2011 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local
2100 bool success = DoLongDivide(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), local
2108 bool success = DoLongRemainder(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), local
2280 bool success = DoIntDivide( local
2288 bool success = DoIntRemainder( local
2338 bool success = DoIntDivide(shadow_frame, inst->VRegA_22b(inst_data), local
2345 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22b(inst_data), local
[all...]
H A Dinterpreter_switch_impl.cc463 bool success = local
466 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx);
471 bool success = local
474 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx);
483 bool success = FillArrayData(obj, payload); local
484 if (!success) {
1075 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local
1077 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_2xx);
1082 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimByte, do_access_check>( local
1084 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_2x
1089 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>( local
1096 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimShort, do_access_check>( local
1103 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimInt, do_access_check>( local
1110 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimLong, do_access_check>( local
1117 bool success = DoFieldGet<InstanceObjectRead, Primitive::kPrimNot, do_access_check>( local
1124 bool success = DoIGetQuick<Primitive::kPrimInt>(shadow_frame, inst, inst_data); local
1130 bool success = DoIGetQuick<Primitive::kPrimLong>(shadow_frame, inst, inst_data); local
1136 bool success = DoIGetQuick<Primitive::kPrimNot>(shadow_frame, inst, inst_data); local
1142 bool success = DoIGetQuick<Primitive::kPrimBoolean>(shadow_frame, inst, inst_data); local
1148 bool success = DoIGetQuick<Primitive::kPrimByte>(shadow_frame, inst, inst_data); local
1154 bool success = DoIGetQuick<Primitive::kPrimChar>(shadow_frame, inst, inst_data); local
1160 bool success = DoIGetQuick<Primitive::kPrimShort>(shadow_frame, inst, inst_data); local
1166 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local
1173 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimByte, do_access_check>( local
1180 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimChar, do_access_check>( local
1187 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimShort, do_access_check>( local
1194 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimInt, do_access_check>( local
1201 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimLong, do_access_check>( local
1208 bool success = DoFieldGet<StaticObjectRead, Primitive::kPrimNot, do_access_check>( local
1215 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local
1222 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimByte, do_access_check, local
1229 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimChar, do_access_check, local
1236 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimShort, do_access_check, local
1243 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimInt, do_access_check, local
1250 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimLong, do_access_check, local
1257 bool success = DoFieldPut<InstanceObjectWrite, Primitive::kPrimNot, do_access_check, local
1264 bool success = DoIPutQuick<Primitive::kPrimInt, transaction_active>( local
1271 bool success = DoIPutQuick<Primitive::kPrimBoolean, transaction_active>( local
1278 bool success = DoIPutQuick<Primitive::kPrimByte, transaction_active>( local
1285 bool success = DoIPutQuick<Primitive::kPrimChar, transaction_active>( local
1292 bool success = DoIPutQuick<Primitive::kPrimShort, transaction_active>( local
1299 bool success = DoIPutQuick<Primitive::kPrimLong, transaction_active>( local
1306 bool success = DoIPutQuick<Primitive::kPrimNot, transaction_active>( local
1313 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local
1320 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimByte, do_access_check, local
1327 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimChar, do_access_check, local
1334 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimShort, do_access_check, local
1341 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimInt, do_access_check, local
1348 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimLong, do_access_check, local
1355 bool success = DoFieldPut<StaticObjectWrite, Primitive::kPrimNot, do_access_check, local
1362 bool success = DoInvoke<kVirtual, false, do_access_check>( local
1369 bool success = DoInvoke<kVirtual, true, do_access_check>( local
1376 bool success = DoInvoke<kSuper, false, do_access_check>( local
1383 bool success = DoInvoke<kSuper, true, do_access_check>( local
1390 bool success = DoInvoke<kDirect, false, do_access_check>( local
1397 bool success = DoInvoke<kDirect, true, do_access_check>( local
1404 bool success = DoInvoke<kInterface, false, do_access_check>( local
1411 bool success = DoInvoke<kInterface, true, do_access_check>( local
1418 bool success = DoInvoke<kStatic, false, do_access_check>( local
1425 bool success = DoInvoke<kStatic, true, do_access_check>( local
1432 bool success = DoInvokeVirtualQuick<false>( local
1439 bool success = DoInvokeVirtualQuick<true>( local
1602 bool success = DoIntDivide(shadow_frame, inst->VRegA_23x(inst_data), local
1610 bool success = DoIntRemainder(shadow_frame, inst->VRegA_23x(inst_data), local
1834 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local
1842 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local
2111 bool success = DoIntDivide(shadow_frame, inst->VRegA_22s(inst_data), local
2119 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22s(inst_data), local
2166 bool success = DoIntDivide(shadow_frame, inst->VRegA_22b(inst_data), local
2173 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22b(inst_data), local
[all...]
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DUpdatingConsoleListener.java32 long success; field in class:UpdatingConsoleListener
69 iterations, failedVerification, failedMutation, timedOut, success,
96 success++;
H A DLogFileListener.java42 long success; field in class:LogFileListener
175 success++;
213 write("Successful: " + success);
219 long verified = success + timedOut + truelyDivergent;
232 (((float) success) / (verified)) * 100.0f;
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc502 bool success = InlineMethodAnalyser::AnalyseMethodCode(verifier, &method); local
503 return success && AddInlineMethod(verifier->GetMethodReference().dex_method_index, method);
/art/compiler/utils/
H A Dassembler_test_base.h193 // Compile the assembly file from_file to a binary file to_file. Returns true on success.
217 bool success = Exec(args, error_msg); local
218 if (!success) {
224 return success;
/art/runtime/gc/space/
H A Dimage_space.cc279 const bool success = image_file->ReadFully(image_header, sizeof(ImageHeader)); local
280 if (!success || !image_header->IsValid()) {
514 bool success; local
519 success = false;
522 success = false;
525 success = RelocateImage(image_location, cache_filename.c_str(), image_isa, &reason);
528 if (success) {
678 bool success = file->ReadFully(&image_header, sizeof(image_header)); local
679 if (!success || !image_header.IsValid()) {

Completed in 2151 milliseconds

12