/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/ |
copy.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock(scoped_lock const&) = delete; 27 using LG = std::scoped_lock<>; 32 using LG = std::scoped_lock<M>; 37 using LG = std::scoped_lock<M, M>; 42 using LG = std::scoped_lock<M, M, M>;
|
types.pass.cpp | 16 // class scoped_lock 43 using T = std::scoped_lock<>; 48 using T = std::scoped_lock<M1>; 53 using T = std::scoped_lock<M1>; 59 using T = std::scoped_lock<M1, M2>; 65 using T = std::scoped_lock<M1, M1, M2>; 70 using T = std::scoped_lock<M1, M1>; 75 using T = std::scoped_lock<M1, M1, M1>;
|
assign.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock& operator=(scoped_lock const&) = delete; 28 using LG = std::scoped_lock<>; 33 using LG = std::scoped_lock<M>; 39 using LG = std::scoped_lock<M, M>; 45 using LG = std::scoped_lock<M, M, M>;
|
mutex.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // explicit scoped_lock(Mutex&...); 31 using LG = std::scoped_lock<>; 37 using LG = std::scoped_lock<M>; 43 using LG = std::scoped_lock<M, M>; 49 using LG = std::scoped_lock<M, M, M>;
|
mutex.pass.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // explicit scoped_lock(mutex_type& m); 68 using LG = std::scoped_lock<>; 72 using LG = std::scoped_lock<TestMutex>; 81 using LG = std::scoped_lock<TestMutex, TestMutex>; 90 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; 101 using LG = std::scoped_lock<MT>; 112 using LG = std::scoped_lock<MT, MT>; 123 using LG = std::scoped_lock<MT, MT, MT>; 138 std::scoped_lock sl{} [all...] |
adopt_lock.pass.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock(adopt_lock_t, Mutex&...); 38 using LG = std::scoped_lock<>; 43 using LG = std::scoped_lock<TestMutex>; 53 using LG = std::scoped_lock<TestMutex, TestMutex>; 63 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>;
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
scoped_lock.hpp | 2 // detail/scoped_lock.hpp 24 class scoped_lock class in namespace:asio::detail 32 scoped_lock(Mutex& m, adopt_lock_t) function in class:asio::detail::scoped_lock 39 explicit scoped_lock(Mutex& m) function in class:asio::detail::scoped_lock 47 ~scoped_lock()
|
posix_mutex.hpp | 21 #include "asio/detail/scoped_lock.hpp" 34 typedef asio::detail::scoped_lock<posix_mutex> scoped_lock; typedef in class:asio::detail::posix_mutex
|
task_io_service.hpp | 126 ASIO_DECL std::size_t do_run_one(mutex::scoped_lock& lock, 130 ASIO_DECL std::size_t do_poll_one(mutex::scoped_lock& lock, 134 ASIO_DECL void stop_all_threads(mutex::scoped_lock& lock); 138 mutex::scoped_lock& lock);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/ |
copy.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock(scoped_lock const&) = delete; 27 using LG = std::scoped_lock<>; 32 using LG = std::scoped_lock<M>; 37 using LG = std::scoped_lock<M, M>; 42 using LG = std::scoped_lock<M, M, M>;
|
types.pass.cpp | 16 // class scoped_lock 43 using T = std::scoped_lock<>; 48 using T = std::scoped_lock<M1>; 53 using T = std::scoped_lock<M1>; 59 using T = std::scoped_lock<M1, M2>; 65 using T = std::scoped_lock<M1, M1, M2>; 70 using T = std::scoped_lock<M1, M1>; 75 using T = std::scoped_lock<M1, M1, M1>;
|
assign.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock& operator=(scoped_lock const&) = delete; 28 using LG = std::scoped_lock<>; 33 using LG = std::scoped_lock<M>; 39 using LG = std::scoped_lock<M, M>; 45 using LG = std::scoped_lock<M, M, M>;
|
mutex.fail.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // explicit scoped_lock(Mutex&...); 31 using LG = std::scoped_lock<>; 37 using LG = std::scoped_lock<M>; 43 using LG = std::scoped_lock<M, M>; 49 using LG = std::scoped_lock<M, M, M>;
|
mutex.pass.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // explicit scoped_lock(mutex_type& m); 68 using LG = std::scoped_lock<>; 72 using LG = std::scoped_lock<TestMutex>; 81 using LG = std::scoped_lock<TestMutex, TestMutex>; 90 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; 101 using LG = std::scoped_lock<MT>; 112 using LG = std::scoped_lock<MT, MT>; 123 using LG = std::scoped_lock<MT, MT, MT>; 138 std::scoped_lock sl{} [all...] |
adopt_lock.pass.cpp | 15 // template <class ...Mutex> class scoped_lock; 17 // scoped_lock(Mutex&..., adopt_lock_t); 38 using LG = std::scoped_lock<>; 43 using LG = std::scoped_lock<TestMutex>; 53 using LG = std::scoped_lock<TestMutex, TestMutex>; 63 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>;
|
/external/webrtc/webrtc/base/ |
thread_checker_impl.cc | 27 CritScope scoped_lock(&lock_); 34 CritScope scoped_lock(&lock_);
|
/packages/services/Car/tools/keventreader/server/ |
eventprovider.cpp | 30 std::scoped_lock lock(mMutex); 43 std::scoped_lock lock(mMutex); 49 std::scoped_lock lock(mMutex);
|
/external/libchrome/base/metrics/ |
field_trial_param_associator.cc | 27 AutoLock scoped_lock(lock_); 57 AutoLock scoped_lock(lock_); 69 AutoLock scoped_lock(lock_); 76 AutoLock scoped_lock(lock_);
|
/external/valgrind/drd/tests/ |
boost_thread.cpp | 18 boost::mutex::scoped_lock sl(s_m); 26 boost::mutex::scoped_lock sl(s_m);
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
select_reactor.hpp | 42 asio::detail::mutex::scoped_lock lock(mutex_); 61 asio::detail::mutex::scoped_lock lock(mutex_);
|
/external/libmojo/base/ |
path_service.cc | 181 AutoLock scoped_lock(path_data->lock); 214 AutoLock scoped_lock(path_data->lock); 257 AutoLock scoped_lock(path_data->lock); 273 AutoLock scoped_lock(path_data->lock); 304 AutoLock scoped_lock(path_data->lock); 324 AutoLock scoped_lock(path_data->lock);
|
/external/perfetto/src/tracing/core/ |
shared_memory_arbiter_impl.cc | 74 std::lock_guard<std::mutex> scoped_lock(lock_); 139 std::lock_guard<std::mutex> scoped_lock(lock_); 194 } // scoped_lock(lock_) 219 std::lock_guard<std::mutex> scoped_lock(lock_); 240 std::lock_guard<std::mutex> scoped_lock(lock_); 252 std::lock_guard<std::mutex> scoped_lock(lock_); 275 std::lock_guard<std::mutex> scoped_lock(lock_);
|
/external/libchrome/base/test/ |
test_mock_time_task_runner.cc | 180 AutoLock scoped_lock(tasks_lock_); 206 AutoLock scoped_lock(tasks_lock_); 245 AutoLock scoped_lock(tasks_lock_); 315 AutoLock scoped_lock(tasks_lock_);
|
/frameworks/native/libs/binder/ |
PermissionController.cpp | 32 std::lock_guard<Mutex> scoped_lock(mLock);
|
ActivityManager.cpp | 34 std::lock_guard<Mutex> scoped_lock(mLock);
|