Searched refs:GetLock (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | barrier.h | 53 void Pass(Thread* self) REQUIRES(!GetLock()); 56 void Wait(Thread* self) REQUIRES(!GetLock()); 67 void Increment(Thread* self, int delta) REQUIRES(!GetLock()); 71 bool Increment(Thread* self, int delta, uint32_t timeout_ms) REQUIRES(!GetLock()); 75 void Init(Thread* self, int count) REQUIRES(!GetLock()); 77 int GetCount(Thread* self) REQUIRES(!GetLock()); 80 void SetCountLocked(Thread* self, int count) REQUIRES(GetLock()); 82 Mutex* GetLock() { in GetLock() function 87 int count_ GUARDED_BY(GetLock()); 90 std::unique_ptr<ConditionVariable> condition_ GUARDED_BY(GetLock());
|
D | barrier.cc | 39 MutexLock mu(self, *GetLock()); in Pass() 48 MutexLock mu(self, *GetLock()); in Init() 54 MutexLock mu(self, *GetLock()); in Increment() 74 MutexLock mu(self, *GetLock()); in Increment() 95 MutexLock mu(self, *GetLock()); in GetCount()
|
D | class_table.h | 267 ReaderWriterMutex& GetLock() { in GetLock() function
|
/art/runtime/base/ |
D | timing_logger.h | 38 void End() REQUIRES(!GetLock()); 39 void Reset() REQUIRES(!GetLock()); 40 void Dump(std::ostream& os) const REQUIRES(!GetLock()); 46 void SetName(const std::string& name) REQUIRES(!GetLock()); 47 void AddLogger(const TimingLogger& logger) REQUIRES(!GetLock()); 48 size_t GetIterations() const REQUIRES(!GetLock()); 62 void AddPair(const std::string &label, uint64_t delta_time) REQUIRES(GetLock()); 63 void DumpHistogram(std::ostream &os) const REQUIRES(GetLock()); 68 Mutex* GetLock() const { in GetLock() function 73 std::set<Histogram<uint64_t>*, HistogramComparator> histograms_ GUARDED_BY(GetLock()); [all …]
|
D | timing_logger.cc | 53 MutexLock mu(Thread::Current(), *GetLock()); in SetName() 61 MutexLock mu(Thread::Current(), *GetLock()); in End() 66 MutexLock mu(Thread::Current(), *GetLock()); in Reset() 73 MutexLock mu(Thread::Current(), *GetLock()); in AddLogger() 85 MutexLock mu(Thread::Current(), *GetLock()); in GetIterations() 90 MutexLock mu(Thread::Current(), *GetLock()); in Dump()
|