Searched refs:Verify (Results 1 - 25 of 29) sorted by relevance

12

/art/dexoptanalyzer/
H A Ddexoptanalyzer_test.cc70 // Verify that the output of dexoptanalyzer for the given arguments is the same
72 void Verify(const std::string& dex_file, function in class:art::DexoptAnalyzerTest
92 Verify(dex_location, CompilerFilter::kSpeed);
93 Verify(dex_location, CompilerFilter::kExtract);
94 Verify(dex_location, CompilerFilter::kQuicken);
95 Verify(dex_location, CompilerFilter::kSpeedProfile);
104 Verify(dex_location, CompilerFilter::kSpeed);
105 Verify(dex_location, CompilerFilter::kQuicken);
106 Verify(dex_location, CompilerFilter::kExtract);
107 Verify(dex_locatio
[all...]
/art/runtime/gc/accounting/
H A Dmod_union_table.h89 virtual void Verify() REQUIRES(Locks::heap_bitmap_lock_) = 0;
141 void Verify() OVERRIDE
187 virtual void Verify() OVERRIDE {}
H A Dmod_union_table_test.cc226 // Verify that all the other references were visited.
238 table->Verify();
240 // Verify that dump doesn't crash.
258 // Verify that the dump still works.
H A Dmod_union_table.cc342 void ModUnionTableReferenceCache::Verify() { function in class:art::gc::accounting::ModUnionTableReferenceCache
/art/runtime/gc/allocator/
H A Drosalloc.h160 Verify();
187 Verify();
193 Verify();
219 Verify();
229 Verify();
231 list->Verify();
257 Verify();
269 void Verify() { function in class:art::gc::allocator::RosAlloc::SlotFreeList
455 // Verify for debugging.
456 void Verify(Threa
[all...]
H A Drosalloc.cc1740 void RosAlloc::Verify() { function in class:art::gc::allocator::RosAlloc
1863 // Call Verify() here for the lock order.
1865 run->Verify(self, this, is_running_on_memory_tool_);
1869 void RosAlloc::Run::Verify(Thread* self, RosAlloc* rosalloc, bool running_on_memory_tool) { function in class:art::gc::allocator::RosAlloc::Run
/art/libdexfile/dex/
H A Ddex_file_verifier_test.cc76 bool success = DexFileVerifier::Verify(dex_file.get(),
1633 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1639 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1650 EXPECT_TRUE(DexFileVerifier::Verify(dex_file.get(),
1656 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1703 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1747 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1791 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1835 EXPECT_FALSE(DexFileVerifier::Verify(dex_file.get(),
1872 EXPECT_FALSE(DexFileVerifier::Verify(dex_fil
[all...]
H A Ddex_file_verifier.h31 static bool Verify(const DexFile* dex_file,
58 bool Verify();
H A Ddex_file_loader.cc367 if (verify && !DexFileVerifier::Verify(dex_file.get(),
H A Ddex_file_verifier.cc226 bool DexFileVerifier::Verify(const DexFile* dex_file, function in class:art::DexFileVerifier
234 if (!verifier->Verify()) {
1272 // try_items are 4-byte aligned. Verify the spacer is 0.
2858 bool DexFileVerifier::Verify() { function in class:art::DexFileVerifier
/art/cmdline/
H A Dcmdline_parser_test.cc516 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify);
517 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:remote", M::Verify);
518 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kEnable, "-Xverify:all", M::Verify);
519 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kSoftFail, "-Xverify:softfail", M::Verify);
/art/runtime/gc/space/
H A Drosalloc_space.h137 void Verify() REQUIRES(Locks::mutator_lock_) {
138 rosalloc_->Verify();
/art/openjdkjvmti/
H A Dfixed_up_dex_file.cc93 if (!art::DexFileVerifier::Verify(&dex,
/art/runtime/base/
H A Dtiming_logger.h154 // Verify that all open timings have related closed timings.
155 void Verify();
H A Dtiming_logger.cc240 void TimingLogger::Verify() { function in class:art::TimingLogger
253 Verify();
/art/runtime/
H A Druntime_options.def120 Verify, verifier::VerifyMode::kEnable)
H A Dclass_table.cc279 class_set.Verify();
H A Dparsed_options.cc294 .IntoKey(M::Verify)
/art/patchoat/
H A Dpatchoat.h56 static bool Verify(const std::string& image_location,
H A Dpatchoat.cc626 bool PatchOat::Verify(const std::string& image_location, function in class:art::PatchOat
1130 UsageError(" --verify: Verify an existing patched file instead of creating one.");
1192 PatchOat::Verify(
/art/compiler/driver/
H A Dcompiler_driver.h421 void Verify(jobject class_loader,
/art/libartbase/base/
H A Dhash_set_test.cc137 ASSERT_EQ(hash_set.Verify(), 0U);
H A Dhash_set.h473 size_t Verify() NO_THREAD_SAFETY_ANALYSIS {
/art/runtime/verifier/
H A Dmethod_verifier.h97 // Verify a class. Returns "kNoFailure" on success.
181 bool Verify() REQUIRES_SHARED(Locks::mutator_lock_);
278 // Verify all direct or virtual methods of a class. The method assumes that the iterator is
437 // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction.
440 // Verify that the target of a branch instruction is valid. We don't expect code to jump directly
447 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
605 * Verify the arguments to a method. We're executing in "method", making
642 * Verify the arguments present for a call site. Returns "true" if all is well, "false" otherwise.
647 * Verify that the target instruction is not "move-exception". It's important that the only way
654 * Verify tha
[all...]
/art/compiler/
H A Dverifier_deps_test.cc87 TimingLogger timings("Verify", false, false);
96 compiler_driver_->Verify(class_loader_, dex_files_, &timings);
190 verifier.Verify();

Completed in 323 milliseconds

12