Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation_test.cc194 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { in CheckConfigureStubs()
205 Instrumentation::InstrumentationLevel GetCurrentInstrumentationLevel() { in GetCurrentInstrumentationLevel()
694 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
702 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F()
709 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
716 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
730 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F()
736 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
749 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInstrumentationStubs, in TEST_F()
755 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F()
[all …]
Dinstrumentation.cc720 Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const { in GetCurrentInstrumentationLevel()
722 return InstrumentationLevel::kInstrumentWithInterpreter; in GetCurrentInstrumentationLevel()
724 return InstrumentationLevel::kInstrumentWithInstrumentationStubs; in GetCurrentInstrumentationLevel()
726 return InstrumentationLevel::kInstrumentNothing; in GetCurrentInstrumentationLevel()
730 bool Instrumentation::RequiresInstrumentationInstallation(InstrumentationLevel new_level) const { in RequiresInstrumentationInstallation()
735 void Instrumentation::UpdateInstrumentationLevels(InstrumentationLevel level) { in UpdateInstrumentationLevels()
736 if (level == InstrumentationLevel::kInstrumentWithInterpreter) { in UpdateInstrumentationLevels()
741 if (p.second == InstrumentationLevel::kInstrumentWithInstrumentationStubs) { in UpdateInstrumentationLevels()
742 p.second = InstrumentationLevel::kInstrumentWithInterpreter; in UpdateInstrumentationLevels()
748 void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { in ConfigureStubs()
[all …]
Dinstrumentation.h204 enum class InstrumentationLevel { enum
558 InstrumentationLevel GetCurrentInstrumentationLevel() const;
563 bool RequiresInstrumentationInstallation(InstrumentationLevel new_level) const;
570 void ConfigureStubs(const char* key, InstrumentationLevel desired_instrumentation_level)
579 void UpdateInstrumentationLevels(InstrumentationLevel level)
713 typedef SafeMap<const char*, InstrumentationLevel> InstrumentationLevelTable;
767 std::ostream& operator<<(std::ostream& os, Instrumentation::InstrumentationLevel rhs);
/art/test/common/
Druntime_state.cc54 instrumentation::Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter; in GetJitIfEnabled()