Searched refs:InstrumentationLevel (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | instrumentation_test.cc | 203 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { in CheckConfigureStubs() 214 Instrumentation::InstrumentationLevel GetCurrentInstrumentationLevel() { in GetCurrentInstrumentationLevel() 713 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F() 721 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F() 728 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F() 735 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F() 749 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter, in TEST_F() 755 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F() 768 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentWithInstrumentationStubs, in TEST_F() 774 EXPECT_EQ(Instrumentation::InstrumentationLevel::kInstrumentNothing, in TEST_F() [all …]
|
D | instrumentation.cc | 633 Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const { in GetCurrentInstrumentationLevel() 635 return InstrumentationLevel::kInstrumentWithInterpreter; in GetCurrentInstrumentationLevel() 637 return InstrumentationLevel::kInstrumentWithInstrumentationStubs; in GetCurrentInstrumentationLevel() 639 return InstrumentationLevel::kInstrumentNothing; in GetCurrentInstrumentationLevel() 643 bool Instrumentation::RequiresInstrumentationInstallation(InstrumentationLevel new_level) const { in RequiresInstrumentationInstallation() 648 void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { in ConfigureStubs() 650 if (desired_level == InstrumentationLevel::kInstrumentNothing) { in ConfigureStubs() 659 InstrumentationLevel requested_level = InstrumentationLevel::kInstrumentNothing; in ConfigureStubs() 664 interpret_only_ = (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) || in ConfigureStubs() 675 if (requested_level > InstrumentationLevel::kInstrumentNothing) { in ConfigureStubs() [all …]
|
D | instrumentation.h | 181 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) 671 typedef SafeMap<const char*, InstrumentationLevel> InstrumentationLevelTable; 720 std::ostream& operator<<(std::ostream& os, const Instrumentation::InstrumentationLevel& rhs);
|
/art/test/common/ |
D | runtime_state.cc | 48 instrumentation::Instrumentation::InstrumentationLevel::kInstrumentWithInterpreter; in GetJitIfEnabled()
|