HomeSort by: relevance | last modified time | path
    Searched refs:_M_device (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
unique_lock.h 66 : _M_device(0), _M_owns(false)
71 : _M_device(std::__addressof(__m)), _M_owns(false)
78 : _M_device(std::__addressof(__m)), _M_owns(false)
83 : _M_device(std::__addressof(__m)), _M_owns(_M_device->try_lock())
88 : _M_device(std::__addressof(__m)), _M_owns(true)
97 : _M_device(std::__addressof(__m)),
98 _M_owns(_M_device->try_lock_until(__atime))
105 : _M_device(std::__addressof(__m)),
106 _M_owns(_M_device->try_lock_for(__rtime)
    [all...]
std_mutex.h 249 explicit lock_guard(mutex_type& __m) : _M_device(__m)
250 { _M_device.lock(); }
253 lock_guard(mutex_type& __m, adopt_lock_t) noexcept : _M_device(__m)
257 { _M_device.unlock(); }
263 mutex_type& _M_device;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
unique_lock.h 65 : _M_device(0), _M_owns(false)
69 : _M_device(std::__addressof(__m)), _M_owns(false)
76 : _M_device(std::__addressof(__m)), _M_owns(false)
80 : _M_device(std::__addressof(__m)), _M_owns(_M_device->try_lock())
84 : _M_device(std::__addressof(__m)), _M_owns(true)
92 : _M_device(std::__addressof(__m)),
93 _M_owns(_M_device->try_lock_until(__atime))
99 : _M_device(std::__addressof(__m)),
100 _M_owns(_M_device->try_lock_for(__rtime)
    [all...]
std_mutex.h 247 explicit lock_guard(mutex_type& __m) : _M_device(__m)
248 { _M_device.lock(); }
250 lock_guard(mutex_type& __m, adopt_lock_t) noexcept : _M_device(__m)
254 { _M_device.unlock(); }
260 mutex_type& _M_device;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
concurrence.h 234 __mutex_type& _M_device;
240 explicit __scoped_lock(__mutex_type& __name) : _M_device(__name)
241 { _M_device.lock(); }
244 { _M_device.unlock(); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
concurrence.h 234 __mutex_type& _M_device;
240 explicit __scoped_lock(__mutex_type& __name) : _M_device(__name)
241 { _M_device.lock(); }
244 { _M_device.unlock(); }

Completed in 26 milliseconds