Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 67) sorted by relevance

123

/art/runtime/
Dsdk_checker.cc54 bool found = false; in ShouldDenyAccess() local
82 found = true; in ShouldDenyAccess()
87 if (!found) { in ShouldDenyAccess()
92 return !found; in ShouldDenyAccess()
100 bool found = false; in ShouldDenyAccess() local
120 found = true; in ShouldDenyAccess()
125 if (!found) { in ShouldDenyAccess()
130 return !found; in ShouldDenyAccess()
138 bool found = false; in ShouldDenyAccess() local
144 found = true; in ShouldDenyAccess()
[all …]
Dart_method.cc436 static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) in FindOatMethodFromDexFileFor() argument
458 found); in FindOatMethodFromDexFileFor()
459 if (!(*found)) { in FindOatMethodFromDexFileFor()
467 bool* found) in FindOatMethodFor() argument
476 return FindOatMethodFromDexFileFor(method, found); in FindOatMethodFor()
506 found); in FindOatMethodFor()
507 if (!(*found)) { in FindOatMethodFor()
595 bool found; in GetOatQuickMethodHeader() local
597 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found); in GetOatQuickMethodHeader()
598 if (!found) { in GetOatQuickMethodHeader()
[all …]
/art/test/063-process-manager/src/
DMain.java42 boolean found = false; in checkManager()
55 found = true; in checkManager()
59 if (! found) { in checkManager()
69 boolean found = false; in waitForReaperTimedWaiting()
73 found = true; in waitForReaperTimedWaiting()
82 if (ok && (!reaperMustExist || found)) { in waitForReaperTimedWaiting()
/art/test/543-env-long-ref/
Denv_long_ref.cc29 bool found = false; in Java_Main_lookForMyRegisters() local
36 found = true; in Java_Main_lookForMyRegisters()
52 CHECK(found); in Java_Main_lookForMyRegisters()
/art/test/015-switch/
Dexpected-stdout.txt118 CORRECT (not found)
122 CORRECT (not found)
123 CORRECT (not found)
/art/test/661-oat-writer-layout/
Doat_writer_layout.cc57 bool found = false; in Java_Main_hasOatCompiledCode() local
60 /* out */ &found); in Java_Main_hasOatCompiledCode()
62 if (!found) { in Java_Main_hasOatCompiledCode()
/art/test/530-checker-peel-unroll/src/
DMain.java997 int found = 0; in verifyUnrolling() local
1024 found += a[i]; in verifyUnrolling()
1025 found += b[i]; in verifyUnrolling()
1027 found += (int)mC[RESULT_POS][RESULT_POS]; in verifyUnrolling()
1029 expectEquals(expected, found); in verifyUnrolling()
1066 int found = 0; in verifyPeeling() local
1068 found += a[i]; in verifyPeeling()
1071 expectEquals(expected, found); in verifyPeeling()
/art/libdexfile/dex/
Dart_dex_file_loader_test.cc265 const dex::ProtoId* found = in TEST_F() local
267 ASSERT_TRUE(found != nullptr); in TEST_F()
268 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), dex::ProtoIndex(i)); in TEST_F()
278 const dex::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F() local
279 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": " in TEST_F()
283 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i); in TEST_F()
293 const dex::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); in TEST_F() local
294 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": " in TEST_F()
298 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i); in TEST_F()
/art/test/912-classes/
Dclasses_art.cc110 bool found = false; in Java_art_Test912Art_isLoadedClass() local
111 for (jint i = 0; !found && i < class_count; ++i) { in Java_art_Test912Art_isLoadedClass()
118 found = strcmp(name.c_str(), sig) == 0; in Java_art_Test912Art_isLoadedClass()
125 return found; in Java_art_Test912Art_isLoadedClass()
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DPoolIndexChanger.java131 boolean found = false; in generateMutation()
138 while (!found) { in generateMutation()
142 found = true; in generateMutation()
157 found = false; in generateMutation()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc130 bool found = false; in Action() local
135 found = true; in Action()
140 if (found) { in Action()
/art/test/035-enum/
Dexpected-stdout.txt1 found field CRAWLING
/art/test/931-agent-thread/
Dagent_thread.cc78 bool found = false; in AgentMain() local
81 found = true; in AgentMain()
85 CHECK(found); in AgentMain()
/art/test/1960-obsolete-jit-multithread-native/
Dinfo.txt1 Tests issue found in b/73333076 where multiple threads sharing the same obsolete method could
/art/test/1961-obsolete-jit-multithread/
Dinfo.txt1 Tests issue found in b/73333076 where multiple threads sharing the same obsolete method could
/art/runtime/arch/arm/
Dfault_handler_arm.cc159 bool found = false; in Action() local
164 found = true; in Action()
169 if (found) { in Action()
/art/oatdump/
Doatdump_test.h239 std::vector<bool> found(expected_prefixes.size(), false);
240 auto line_handle_fn = [&found, &expected_prefixes](const char* line, size_t line_len) {
247 if (!found[i] &&
250 found[i] = true;
363 if (!found[i]) {
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md20 being used. On ART this is a dex-pc. Dex-pcs can be found using tools such as
29 that cannot be found using standard or bootstrap classloader at startup.
31 * Deviating from this format or including a breakpoint that cannot be found at
/art/test/135-MirandaDispatch/
Dinfo.txt3 …Main$TheInterface.m()' was expected to be of type virtual but instead was found to be of type inte…
/art/test/656-annotation-lookup-generic-jni/
Dinfo.txt2 method with an annotation (to be found in a custom class loader)
/art/runtime/arch/x86/
Dfault_handler_x86.cc402 bool found = false; in Action() local
405 found = true; in Action()
411 if (found) { in Action()
/art/test/1940-ddms-ext/src-art/art/
DTest1940.java128 private boolean found = false; field in Test1940.AwaitChunkHandler
138 found = true; in HandleChunk()
144 while (!found) { in Await()
/art/test/1974-resize-array/
Dresize_array.cc65 bool found = false; in FindExtensionEvent() local
70 found = true; in FindExtensionEvent()
78 if (!found) { in FindExtensionEvent()
/art/runtime/jni/
Djni_id_manager.cc329 bool found = false; in EncodeGenericId() local
334 [&found, &self, t](const ArtType* candidate) { in EncodeGenericId()
336 found = found || candidate == t.Get(); in EncodeGenericId()
337 return !found; in EncodeGenericId()
340 if (found) { in EncodeGenericId()
/art/
DAndroid.bp9 // 'apply every license found to every target'. While this makes sure we respect

123