HomeSort by relevance Sort by last modified time
    Searched refs:ACQUIRE (Results 1 - 21 of 21) sorted by null

  /art/runtime/gc/
scoped_gc_critical_section.h 36 ACQUIRE(Roles::uninterruptible_);
  /external/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /external/libcxx/utils/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /system/core/libutils/include/utils/
Mutex.h 55 #define ACQUIRE(...) THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__))
107 status_t lock() ACQUIRE();
132 inline explicit Autolock(Mutex& mutex) ACQUIRE(mutex) : mLock(mutex) { mLock.lock(); }
133 inline explicit Autolock(Mutex* mutex) ACQUIRE(mutex) : mLock(*mutex) { mLock.lock(); }
  /device/google/cuttlefish_common/common/libs/threads/
thread_annotations.h 48 #define ACQUIRE(...) \
  /external/tensorflow/tensorflow/core/platform/default/
thread_annotations.h 76 #define ACQUIRE(...) \
115 // Document functions that acquire a lock in the body of a function, and do
128 // Document functions that try to acquire a lock, and return success or failure
  /art/runtime/base/
mutex.h 253 // Block until mutex is free then acquire exclusive access.
254 void ExclusiveLock(Thread* self) ACQUIRE();
255 void Lock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
340 // Block until ReaderWriterMutex is free then acquire exclusive access.
341 void ExclusiveLock(Thread* self) ACQUIRE();
342 void WriterLock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
348 // Block until ReaderWriterMutex is free and acquire exclusive access. Returns true on success
355 // Block until ReaderWriterMutex is shared or free then acquire a share on the access.
359 // Try to acquire share of ReaderWriterMutex.
512 MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu)
    [all...]
  /system/core/base/include/android-base/
thread_annotations.h 59 #define ACQUIRE(...) \
  /art/openjdkjvmti/
deopt_manager.cc 273 ACQUIRE(art::Locks::mutator_lock_)
274 ACQUIRE(art::Roles::uninterruptible_)
jvmti_weak_table.h 117 ALWAYS_INLINE void Lock() ACQUIRE(allow_disallow_lock_);
  /frameworks/base/cmds/statsd/benchmark/
metric_util.cpp 80 return CreateWakelockStateChangedAtomMatcher("AcquireWakelock", WakelockStateChanged::ACQUIRE);
307 attributions, wakelockName, WakelockStateChanged::ACQUIRE, timestampNs);
  /frameworks/native/libs/gui/include/gui/
FrameTimestamps.h 41 ACQUIRE,
143 uint64_t frameNumber, std::shared_ptr<FenceTime>&& acquire);
  /frameworks/base/cmds/statsd/tests/
statsd_test_util.cpp 85 return CreateWakelockStateChangedAtomMatcher("AcquireWakelock", WakelockStateChanged::ACQUIRE);
370 attributions, wakelockName, WakelockStateChanged::ACQUIRE, timestampNs);
    [all...]
  /art/runtime/
thread.h 324 const char* StartAssertNoThreadSuspension(const char* cause) ACQUIRE(Roles::uninterruptible_) {
325 Roles::uninterruptible_.Acquire(); // No-op.
    [all...]
subtype_check_test.cc 291 MockScopedLockSubtypeCheck() ACQUIRE(*Locks::subtype_check_lock_) {}
    [all...]
thread.cc     [all...]
  /frameworks/base/cmds/statsd/src/
atoms.proto 456 ACQUIRE = 1;
    [all...]
  /frameworks/base/services/core/java/com/android/server/fingerprint/
FingerprintService.java 114 int acquire; // total number of acquisitions. Should be >= accept+reject due to poor image field in class:FingerprintService.PerformanceStats
475 mPerformanceStats.acquire++;
740 Slog.e(TAG, "Unable to acquire UserManager");
748 Slog.e(TAG, "Unable to acquire UserManager");
    [all...]
  /frameworks/native/libs/gui/tests/
Surface_test.cpp 564 FrameEvent::ACQUIRE,
641 std::shared_ptr<FenceTime>&& acquire) override {
642 // Verify the acquire fence being added isn't the one from the consumer.
643 EXPECT_NE(mConsumerAcquireFence, acquire);
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 791 FrameEvent::ACQUIRE,
    [all...]

Completed in 513 milliseconds