Searched defs:found (Results 1 - 19 of 19) sorted by relevance

/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc134 bool found = false; local
139 found = true;
144 if (found) {
185 VLOG(signals) << "Stack overflow found";
/art/compiler/debug/dwarf/
H A Ddwarf_test.h138 bool found = false; local
142 found = true;
146 if (!found) {
149 "Not found anywhere in the rest of the output.";
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc161 bool found = false; local
166 found = true;
171 if (found) {
231 VLOG(signals) << "Stack overflow found";
/art/runtime/gc/space/
H A Dregion_space-inl.h284 bool found = true; local
292 found = false;
296 if (found) {
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc368 bool found = false; local
371 found = true;
377 if (found) {
430 VLOG(signals) << "Stack overflow found";
/art/runtime/
H A Ddex_file_test.cc316 const DexFile::ProtoId* found = local
318 ASSERT_TRUE(found != nullptr);
319 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i);
329 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); local
330 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": "
334 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i);
344 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); local
345 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": "
349 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i);
H A Dart_method.cc194 // Default to handler not found.
362 bool found = false; local
364 Runtime::Current()->GetClassLinker()->FindOatMethodFor(this, &found);
365 if (!found || (oat_method.GetQuickCode() != nullptr)) {
426 bool found; local
427 OatFile::OatMethod oat_method = class_linker->FindOatMethodFor(this, &found);
428 if (!found) {
H A Dintern_table.cc194 mirror::String* found = LookupStrongLocked(image_string); local
195 if (found == nullptr) {
198 DCHECK_EQ(found, image_string);
300 // A match was found in the weak table. Promote to the strong table.
404 CHECK(Find(string.Read()) == nullptr) << "Already found " << string.Read()->ToModifiedUtf8();
H A Dmem_map.cc209 // found, or a generic error in other cases.
482 bool found = false; local
487 found = true;
492 CHECK(found) << "MemMap not found";
861 next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region
H A Dthread.cc327 FrameIdToShadowFrame* found = nullptr; local
332 CHECK(found == nullptr) << "Multiple records for the frame " << frame_id;
333 found = record;
339 return found;
H A Dclass_linker.cc788 CHECK(contains) << m << " not found";
2384 // for, or not found.
2632 bool* found) {
2636 *found = false;
2639 *found = true;
2678 const OatFile::OatMethod ClassLinker::FindOatMethodFor(ArtMethod* method, bool* found) { argument
2708 found);
2709 if (!(*found)) {
2721 bool found; local
2722 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
2630 FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found) argument
2740 bool found; local
8128 auto found = location_to_dex_file.find(profile_key); local
[all...]
/art/runtime/gc/accounting/
H A Dmod_union_table.cc389 auto found = references_.find(card); local
390 if (found == references_.end()) {
397 references_.erase(found);
399 found->second = cards_references;
/art/compiler/utils/
H A Dassembler_test_base.h272 bool found = false; local
275 found = true;
282 if (found) {
/art/runtime/jdwp/
H A Djdwp_event.cc317 bool found = false; local
323 found = true;
331 if (found) {
/art/runtime/mirror/
H A Dclass.cc473 // excludes interface methods which might be found by this.
609 // If we reach here we either never found any declaration of the method (in which case
610 // 'abstract_methods' is empty or we found no non-overriden default methods in which case
657 ArtField* found = nullptr; local
660 found = &field;
664 CHECK_EQ(found, ret) << "Found " << PrettyField(found) << " vs " << PrettyField(ret);
/art/compiler/optimizing/
H A Dbounds_check_elimination.cc109 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, /* out */ bool* found) { argument
112 *found = true;
117 *found = true;
125 *found = true;
131 *found = false;
729 bool found; local
730 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found);
735 if (!found) {
736 // No constant or array.length+c format bound found.
927 bool found; variable
[all...]
/art/runtime/interpreter/
H A Dunstarted_runtime.cc123 mirror::Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); local
124 if (found == nullptr && abort_if_not_found) {
131 if (found != nullptr && initialize_class) {
133 Handle<mirror::Class> h_class(hs.NewHandle(found));
139 result->SetL(found);
282 ArtField* found = nullptr; local
285 found = &field;
289 if (found == nullptr) {
292 found = &field;
297 if (found
[all...]
/art/compiler/
H A Dimage_writer.cc394 LOG(FATAL) << "Fat locked object " << object << " found during object copy";
398 LOG(FATAL) << "Thin locked object " << object << " found during object copy";
725 auto found = prune_class_memo_.find(klass); local
726 if (found != prune_class_memo_.end()) {
727 // Already computed, return the found value.
728 return found->second;
953 mirror::String* const found = image_info.intern_table_->LookupStrong(self, string); member in class:art::mirror
956 if (found != nullptr) {
957 return found;
962 mirror::String* found local
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc1131 // more are found
1973 << dex_file.GetLocation() << " previously found in "
1996 bool found = false; local
1997 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1999 found = true;
2002 if (!found) {
2479 // Clear any class not found or verification exceptions.
2806 // even if methods are not found in the verification cache.

Completed in 338 milliseconds