Home
last modified time | relevance | path

Searched refs:instance_ (Results 1 – 7 of 7) sorted by relevance

/art/runtime/verifier/
Dreg_type-inl.h158 DCHECK(instance_ != nullptr); in GetInstance()
159 return instance_; in GetInstance()
163 DCHECK(instance_ != nullptr); in GetInstance()
164 return instance_; in GetInstance()
168 DCHECK(instance_ != nullptr); in GetInstance()
169 return instance_; in GetInstance()
173 DCHECK(instance_ != nullptr); in GetInstance()
174 return instance_; in GetInstance()
178 DCHECK(instance_ != nullptr); in GetInstance()
179 return instance_; in GetInstance()
[all …]
Dreg_type.cc43 const UndefinedType* UndefinedType::instance_ = nullptr; member in art::verifier::UndefinedType
44 const ConflictType* ConflictType::instance_ = nullptr; member in art::verifier::ConflictType
45 const BooleanType* BooleanType::instance_ = nullptr; member in art::verifier::BooleanType
46 const ByteType* ByteType::instance_ = nullptr; member in art::verifier::ByteType
47 const ShortType* ShortType::instance_ = nullptr; member in art::verifier::ShortType
48 const CharType* CharType::instance_ = nullptr; member in art::verifier::CharType
49 const FloatType* FloatType::instance_ = nullptr; member in art::verifier::FloatType
50 const LongLoType* LongLoType::instance_ = nullptr; member in art::verifier::LongLoType
51 const LongHiType* LongHiType::instance_ = nullptr; member in art::verifier::LongHiType
52 const DoubleLoType* DoubleLoType::instance_ = nullptr; member in art::verifier::DoubleLoType
[all …]
Dreg_type.h375 static const ConflictType* instance_; variable
411 static const UndefinedType* instance_; variable
452 static const IntegerType* instance_; variable
478 static const BooleanType* instance_; variable
503 static const ByteType* instance_; variable
527 static const ShortType* instance_; variable
552 static const CharType* instance_; variable
577 static const FloatType* instance_; variable
610 static const LongLoType* instance_; variable
635 static const LongHiType* instance_; variable
[all …]
/art/runtime/jit/
Dprofile_saver.h42 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
45 static void Stop(bool dump_info_) REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
53 static void NotifyJitActivity() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
59 static void NotifyStartupCompleted() REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
70 REQUIRES(!Locks::profiler_lock_, !instance_->wait_lock_);
122 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
Dprofile_saver.cc50 ProfileSaver* ProfileSaver::instance_ = nullptr; member in art::ProfileSaver
113 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyStartupCompleted()
116 MutexLock mu2(self, instance_->wait_lock_); in NotifyStartupCompleted()
117 instance_->period_condition_.Signal(self); in NotifyStartupCompleted()
284 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
287 instance_->NotifyJitActivityInternal(); in NotifyJitActivity()
987 CHECK_EQ(reinterpret_cast<ProfileSaver*>(arg), instance_); in RunProfileSaverThread()
988 instance_->Run(); in RunProfileSaverThread()
1059 } else if (instance_ == nullptr) { in Start()
1073 if (instance_ != nullptr) { in Start()
[all …]
/art/runtime/
Druntime.h273 return instance_; in Current()
281 static void TestOnlySetCurrent(Runtime* instance) { instance_ = instance; } in TestOnlySetCurrent()
1229 static Runtime* instance_; variable
Druntime.cc208 Runtime* Runtime::instance_ = nullptr; member in art::Runtime
542 CHECK(instance_ == nullptr || instance_ == this); in ~Runtime()
543 instance_ = nullptr; in ~Runtime()
849 if (Runtime::instance_ != nullptr) { in Create()
852 instance_ = new Runtime; in Create()
854 if (!instance_->Init(std::move(runtime_options))) { in Create()
858 instance_ = nullptr; in Create()