Lines Matching refs:ACQUIRE
79 as such (using ``ACQUIRE``/``RELEASE``).
212 ACQUIRE(...), ACQUIRE_SHARED(...), RELEASE(...), RELEASE_SHARED(...)
218 ``ACQUIRE`` is an attribute on functions or methods, which
233 void lockAndInit() ACQUIRE(mu) {
249 If no argument is passed to ``ACQUIRE`` or ``RELEASE``, then the argument is
264 void Lock() ACQUIRE() { mu.Lock(); }
415 as ``ACQUIRE``. See :ref:`mutexheader`, below, for example uses.
718 ~MutexUnlocker() ACQUIRE(mu) { mu->Lock(); }
793 #define ACQUIRE(...) \
834 void Lock() ACQUIRE();
873 MutexLocker(Mutex *mu) ACQUIRE(mu) : mut(mu) {
911 // Replaced by ACQUIRE