HomeSort by relevance Sort by last modified time
    Searched defs:lock_ (Results 76 - 100 of 130) sorted by null

1 2 34 5 6

  /art/compiler/utils/
dedupe_set-inl.h 59 lock_(lock_name_.c_str()),
70 const StoreKey* Add(Thread* self, size_t hash, const InKey& in_key) REQUIRES(!lock_) {
71 MutexLock lock(self, lock_);
83 void UpdateStats(Thread* self, Stats* global_stats) REQUIRES(!lock_) {
88 MutexLock lock(self, lock_);
178 Mutex lock_; member in class:art::DedupeSet::Shard
179 HashSet<HashedKey<StoreKey>, ShardEmptyFn, ShardHashFn, ShardPred> keys_ GUARDED_BY(lock_);
swap_space.cc 65 lock_("SwapSpace lock", static_cast<LockLevel>(LockLevel::kDefaultMutexLevel - 1)) {
109 MutexLock lock(Thread::Current(), lock_); local
191 MutexLock lock(Thread::Current(), lock_); local
  /art/runtime/
signal_catcher.cc 77 lock_("SignalCatcher lock"),
78 cond_("SignalCatcher::cond_", lock_),
92 MutexLock mu(self, lock_);
107 MutexLock mu(Thread::Current(), lock_); local
112 MutexLock mu(Thread::Current(), lock_); local
242 MutexLock mu(self, signal_catcher->lock_);
class_table.cc 25 ClassTable::ClassTable() : lock_("Class loader classes", kClassLoaderClassesLock) {
32 WriterMutexLock mu(Thread::Current(), lock_); local
37 ReaderMutexLock mu(Thread::Current(), lock_); local
49 ReaderMutexLock mu(Thread::Current(), lock_); local
67 WriterMutexLock mu(Thread::Current(), lock_); local
105 ReaderMutexLock mu(Thread::Current(), lock_); local
114 ReaderMutexLock mu(Thread::Current(), lock_); local
119 ReaderMutexLock mu(Thread::Current(), lock_); local
128 ReaderMutexLock mu(Thread::Current(), lock_); local
134 ReaderMutexLock mu(Thread::Current(), lock_); local
146 WriterMutexLock mu(Thread::Current(), lock_); local
159 WriterMutexLock mu(Thread::Current(), lock_); local
182 WriterMutexLock mu(Thread::Current(), lock_); local
188 WriterMutexLock mu(Thread::Current(), lock_); local
230 WriterMutexLock mu(Thread::Current(), lock_); local
252 WriterMutexLock mu(Thread::Current(), lock_); local
265 ReaderMutexLock mu(Thread::Current(), lock_); local
291 WriterMutexLock mu(Thread::Current(), lock_); local
296 WriterMutexLock mu(Thread::Current(), lock_); local
    [all...]
  /external/google-benchmark/src/
mutex.h 104 bool wait() EXCLUDES(lock_) {
107 MutexLock ml(lock_);
114 void removeThread() EXCLUDES(lock_) {
115 MutexLock ml(lock_);
121 Mutex lock_; member in class:benchmark::Barrier
132 bool createBarrier(MutexLock& ml) REQUIRES(lock_) {
  /external/libchrome/base/synchronization/
waitable_event_posix.cc 49 base::AutoLock locked(kernel_->lock_);
54 base::AutoLock locked(kernel_->lock_);
71 base::AutoLock locked(kernel_->lock_);
91 lock_(),
92 cv_(&lock_) {
96 base::AutoLock locked(lock_);
140 return &lock_;
150 base::Lock lock_; member in class:base::SyncWaiter
164 kernel_->lock_.Acquire();
172 kernel_->lock_.Release()
    [all...]
  /external/libchrome/base/threading/
simple_thread.h 187 base::Lock lock_; // Locks delegates_ member in class:base::DelegateSimpleThreadPool
  /external/libchrome/base/trace_event/
trace_event_synthetic_delay.cc 34 Lock lock_; member in class:base::trace_event::TraceEventSyntheticDelayRegistry
61 AutoLock lock(lock_);
68 AutoLock lock(lock_);
73 AutoLock lock(lock_);
88 AutoLock lock(lock_);
104 AutoLock lock(lock_);
116 AutoLock lock(lock_);
166 AutoLock lock(lock_);
188 AutoLock lock(lock_);
memory_dump_manager.h 268 // threads outside of the lock_ to avoid races when disabling tracing.
357 Lock lock_; member in class:base::trace_event::MemoryDumpManager
  /external/libcxx/utils/google-benchmark/src/
mutex.h 104 bool wait() EXCLUDES(lock_) {
107 MutexLock ml(lock_);
114 void removeThread() EXCLUDES(lock_) {
115 MutexLock ml(lock_);
121 Mutex lock_; member in class:benchmark::Barrier
132 bool createBarrier(MutexLock& ml) REQUIRES(lock_) {
  /external/libmojo/mojo/public/cpp/bindings/
connector.h 189 // If sending messages is allowed from multiple threads, |lock_| is used to
191 std::unique_ptr<base::Lock> lock_; member in class:mojo::Connector
  /external/libmojo/mojo/public/cpp/bindings/lib/
connector.cc 25 explicit MayAutoLock(base::Lock* lock) : lock_(lock) {
26 if (lock_)
27 lock_->Acquire();
31 if (lock_) {
32 lock_->AssertAcquired();
33 lock_->Release();
38 base::Lock* lock_; member in class:mojo::__anon23730::MayAutoLock
57 lock_(config == MULTI_THREADED_SEND ? new base::Lock : nullptr),
77 MayAutoLock locker(lock_.get());
85 MayAutoLock locker(lock_.get())
    [all...]
multiplex_router.h 170 // a ref outside of |lock_| before calling this method.
216 mutable base::Lock lock_; member in class:mojo::internal::MultiplexRouter
  /external/webrtc/webrtc/base/
profiler.h 135 mutable SharedExclusiveLock lock_; member in class:rtc::Profiler
  /frameworks/native/libs/vr/libvrflinger/
display_surface.h 87 mutable std::mutex lock_; member in class:android::dvr::DisplaySurface
  /toolchain/binutils/binutils-2.25/gold/
dirsearch.cc 102 : lock_(), caches_()
121 gold::Lock lock_; member in class:__anon115860::Dir_caches
137 gold::Hold_lock hl(this->lock_);
147 gold::Hold_lock hl(this->lock_);
gold-threads.h 72 { this->lock_->acquire(); }
77 { this->lock_->release(); }
87 { return this->lock_; }
89 Lock_impl* lock_; member in class:gold::Lock
98 : lock_(lock)
99 { this->lock_.acquire(); }
102 { this->lock_.release(); }
109 Lock& lock_; member in class:gold::Hold_lock
116 : lock_(lock)
118 if (this->lock_ != NULL
132 Lock* lock_; member in class:gold::Hold_optional_lock
191 Lock& lock_; member in class:gold::Condvar
    [all...]
workqueue.h 275 Lock lock_; member in class:gold::Workqueue
284 // Condition variable associated with lock_. This is signalled when
  /art/runtime/base/
timing_logger.cc 43 lock_(lock_name_.c_str(), kDefaultMutexLevel, true) {
52 MutexLock mu(Thread::Current(), lock_); local
60 MutexLock mu(Thread::Current(), lock_); local
65 MutexLock mu(Thread::Current(), lock_); local
72 MutexLock mu(Thread::Current(), lock_); local
84 MutexLock mu(Thread::Current(), lock_); local
89 MutexLock mu(Thread::Current(), lock_); local
  /art/runtime/gc/space/
dlmalloc_space.cc 134 MutexLock mu(self, lock_);
169 MutexLock mu(self, lock_);
198 MutexLock mu(self, lock_);
219 MutexLock mu(self, lock_);
226 MutexLock mu(Thread::Current(), lock_); local
237 MutexLock mu(Thread::Current(), lock_); local
243 MutexLock mu(Thread::Current(), lock_); local
248 MutexLock mu(Thread::Current(), lock_); local
253 MutexLock mu(Thread::Current(), lock_); local
266 MutexLock mu(Thread::Current(), lock_); local
273 MutexLock mu(Thread::Current(), lock_); local
    [all...]
rosalloc_space.cc 160 MutexLock mu(self, lock_);
198 MutexLock mu(self, lock_);
218 MutexLock mu(self, lock_);
251 MutexLock mu(self, lock_);
268 MutexLock mu(Thread::Current(), lock_); local
273 MutexLock mu(Thread::Current(), lock_); local
278 MutexLock mu(Thread::Current(), lock_); local
  /external/libchrome/base/files/
file_path_watcher_linux.cc 75 Lock lock_; member in class:base::__anon22690::InotifyReader
298 AutoLock auto_lock(lock_);
317 AutoLock auto_lock(lock_);
332 AutoLock auto_lock(lock_);
  /external/libchrome/base/metrics/
field_trial.h 497 // Helper function should be called only while holding lock_.
514 base::Lock lock_; member in class:base::FieldTrialList
persistent_histogram_allocator.h 65 // Gets the object holding records for a given sample-map id when |lock_|
88 base::Lock lock_; member in class:base::PersistentSparseHistogramDataManager
statistics_recorder.cc 62 if (iter_ == histograms_end || lock_ == NULL)
65 base::AutoLock auto_lock(*lock_);
82 DCHECK(lock_);
88 base::AutoLock auto_lock(*lock_);
102 if (lock_ == NULL)
104 base::AutoLock auto_lock(*lock_);
115 // twice if (lock_ == NULL) || (!histograms_).
116 if (lock_ == NULL) {
124 base::AutoLock auto_lock(*lock_);
167 if (lock_ == NULL)
541 base::Lock* StatisticsRecorder::lock_ = NULL; member in class:base::StatisticsRecorder
    [all...]

Completed in 510 milliseconds

1 2 34 5 6