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

/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc130 bool found = false; local
135 found = true;
140 if (found) {
180 VLOG(signals) << "Stack overflow found";
/art/compiler/dex/
H A Dpass_driver_me.h118 bool found = strstr(dump_pass_list, pass->GetName()); local
119 should_dump = (should_dump || found);
H A Dmir_dataflow.cc1339 * to that found in GenInvoke() to decide whether to count refs
1360 bool found = false; local
1362 found = true;
1364 found = true;
1372 found = true;
1377 if (found == false) {
1382 LOG(FATAL) << "Successor " << block_name1 << "not found from "
H A Dmir_graph.cc1541 // No true loop head has been found but there may be true loop heads after the mess we need
2090 // We found a def of the register that we are being asked about.
2104 // If it is not -1, we found a match, is it ssa_reg?
2110 bool found = false; local
2113 found = true;
2118 found = true;
2130 found = true;
2135 return found;
2140 bool found = false; local
2152 found
[all...]
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc152 bool found = false; local
157 found = true;
162 if (found) {
221 VLOG(signals) << "Stack overflow found";
/art/compiler/utils/
H A Dassembler_thumb_test.cc128 bool found = founddir != ""; local
129 if (!found) {
H A Dgrowable_array.h158 bool found = false; local
160 if (!found && elem_list_[i] == element) {
161 found = true;
163 if (found) {
167 // We should either have found the element, or it was the last (unscanned) element.
168 DCHECK(found || (element == elem_list_[num_used_ - 1]));
H A Dassembler_test.h438 bool found = false; local
441 found = true;
448 if (found) {
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc355 bool found = false; local
358 found = true;
364 if (found) {
417 VLOG(signals) << "Stack overflow found";
/art/runtime/
H A Ddex_file_test.cc311 const DexFile::ProtoId* found = local
313 ASSERT_TRUE(found != NULL);
314 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i);
324 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); local
325 ASSERT_TRUE(found != NULL) << "Didn't find method " << i << ": "
329 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i);
339 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); local
340 ASSERT_TRUE(found != NULL) << "Didn't find field " << i << ": "
344 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i);
H A Dintern_table.cc232 // A match was found in the weak table. Promote to the strong table.
288 const mirror::String* found = LookupWeak(s); local
289 return found == s;
H A Dmem_map.cc193 // found, or a generic error in other cases.
328 next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region
463 bool found = false; local
468 found = true;
473 CHECK(found) << "MemMap not found";
H A Dclass_linker.cc762 break; // Not found, done.
983 "0x%x, found 0x%x", oat_location, expected_image_oat_checksum,
992 PRIuPTR ", found %ud", oat_location, expected_image_oat_offset,
1000 " found %d", oat_location, expected_patch_delta, actual_patch_delta);
1016 "found 0x%x", oat_location, expected_dex_checksum,
1155 // If no classes.dex found in dex_location, it has been stripped or is corrupt, assume oat is
1199 error_msgs->push_back(StringPrintf("Failed to verify oat file '%s' found for dex location "
1206 error_msgs->push_back(StringPrintf("Failed to verify non-executable oat file '%s' found for "
2012 // Check if this would be found in the parent boot class loader.
2181 ThrowNoClassDefFoundError("Class %s not found", PrintableStrin
2379 bool found = false; local
[all...]
/art/runtime/gc/accounting/
H A Dmod_union_table.cc281 auto found = references_.find(card); local
282 if (found == references_.end()) {
289 found->second = cards_references;
/art/runtime/gc/space/
H A Dlarge_object_space.cc143 MemMaps::iterator found = mem_maps_.find(ptr); local
144 if (UNLIKELY(found == mem_maps_.end())) {
148 DCHECK_GE(num_bytes_allocated_, found->second->Size());
149 size_t allocation_size = found->second->Size();
152 delete found->second;
153 mem_maps_.erase(found);
159 auto found = mem_maps_.find(obj); local
160 CHECK(found != mem_maps_.end()) << "Attempted to get size of a large object which is not live";
161 return found->second->Size();
/art/runtime/interpreter/
H A Dinterpreter_common.cc776 Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); local
777 if (found == nullptr && abort_if_not_found) {
784 if (found != nullptr && initialize_class) {
786 Handle<mirror::Class> h_class(hs.NewHandle(found));
792 result->SetL(found);
838 ArtField* found = NULL; local
840 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
843 found = f;
846 if (found == NULL) {
848 for (int32_t i = 0; i < fields->GetLength() && found
[all...]
/art/runtime/jdwp/
H A Djdwp_event.cc302 bool found = false; local
308 found = true;
316 if (found) {
/art/compiler/driver/
H A Dcompiler_driver.cc749 // more are found
1472 << dex_file.GetLocation() << " previously found in "
1495 bool found = false; local
1496 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1498 found = true;
1501 if (!found) {
1859 // Clear any class not found or verification exceptions.

Completed in 1370 milliseconds