Home
last modified time | relevance | path

Searched refs:InstrumentationLevel (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dinstrumentation_test.cc191 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { in CheckConfigureStubs()
202 Instrumentation::InstrumentationLevel GetCurrentInstrumentationLevel() { in GetCurrentInstrumentationLevel()
690 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
698 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F()
705 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
712 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
726 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F()
732 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
745 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInstrumentationStubs, in TEST_F()
751 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
[all …]
Dinstrumentation.cc687 Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const { in GetCurrentInstrumentationLevel()
689 return InstrumentationLevel::kInstrumentWithInterpreter; in GetCurrentInstrumentationLevel()
691 return InstrumentationLevel::kInstrumentWithInstrumentationStubs; in GetCurrentInstrumentationLevel()
693 return InstrumentationLevel::kInstrumentNothing; in GetCurrentInstrumentationLevel()
697 bool Instrumentation::RequiresInstrumentationInstallation(InstrumentationLevel new_level) const { in RequiresInstrumentationInstallation()
702 void Instrumentation::UpdateInstrumentationLevels(InstrumentationLevel level) { in UpdateInstrumentationLevels()
703 if (level == InstrumentationLevel::kInstrumentWithInterpreter) { in UpdateInstrumentationLevels()
708 if (p.second == InstrumentationLevel::kInstrumentWithInstrumentationStubs) { in UpdateInstrumentationLevels()
709 p.second = InstrumentationLevel::kInstrumentWithInterpreter; in UpdateInstrumentationLevels()
715 void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { in ConfigureStubs()
[all …]
Dinstrumentation.h194 enum class InstrumentationLevel { enum
526 InstrumentationLevel GetCurrentInstrumentationLevel() const;
531 bool RequiresInstrumentationInstallation(InstrumentationLevel new_level) const;
538 void ConfigureStubs(const char* key, InstrumentationLevel desired_instrumentation_level)
547 void UpdateInstrumentationLevels(InstrumentationLevel level)
674 typedef SafeMap<const char*, InstrumentationLevel> InstrumentationLevelTable;
727 std::ostream& operator<<(std::ostream& os, const Instrumentation::InstrumentationLevel& rhs);
/art/test/common/
Druntime_state.cc50 instrumentation::Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter; in GetJitIfEnabled()