Searched refs:with_lock_guard (Results 1 – 9 of 9) sorted by relevance
/third_party/boost/libs/thread/test/sync/mutual_exclusion/with_lock_guard/ |
D | with_lock_guard_simple.cpp | 49 boost::with_lock_guard(m, func_with_0_arg); in test_simple() 52 boost::with_lock_guard(m, func_with_1_arg, 3); in test_simple() 55 bool res2 = boost::with_lock_guard(m, func_with_2_arg, 3, true); in test_simple() 61 int res3 = boost::with_lock_guard(m, func_with_3_arg, arg1, false, mes); in test_simple() 67 const char* res4 = boost::with_lock_guard( in test_simple() 109 int res5 = boost::with_lock_guard( in test_variadic_templates() 116 int res6 = boost::with_lock_guard( in test_variadic_templates() 126 int res6_move = boost::with_lock_guard( in test_variadic_templates()
|
D | with_lock_guard_bind.cpp | 49 int res_bind = boost::with_lock_guard( in test_bind() 56 int res_bind_ref = boost::with_lock_guard( in test_bind() 67 boost::with_lock_guard( in test_bind() 114 int res_bind = boost::with_lock_guard( in test_bind_non_const() 121 int res_bind_ref = boost::with_lock_guard( in test_bind_non_const() 132 boost::with_lock_guard( in test_bind_non_const()
|
D | with_lock_guard_lambda.cpp | 30 int res_1 = boost::with_lock_guard( in test_lambda() 41 int res_2 = boost::with_lock_guard( in test_lambda()
|
D | with_lock_guard_move.cpp | 56 bool res = boost::with_lock_guard( in test_movable() 100 boost::with_lock_guard( in test_real_movable()
|
/third_party/boost/boost/thread/ |
D | with_lock_guard.hpp | 49 typename boost::result_of<Function(Args...)>::type with_lock_guard( in with_lock_guard() function 66 typename boost::result_of<Func()>::type with_lock_guard( 75 typename boost::result_of<Func(Arg)>::type with_lock_guard( 87 typename boost::result_of<Func(Arg1, Arg2)>::type with_lock_guard( 101 typename boost::result_of<Func(Arg1, Arg2, Arg3)>::type with_lock_guard( 119 typename boost::result_of<Func(Arg1, Arg2, Arg3, Arg4)>::type with_lock_guard( 141 >::type with_lock_guard( 154 >::type with_lock_guard( 170 >::type with_lock_guard( 188 >::type with_lock_guard( [all …]
|
/third_party/boost/libs/thread/doc/ |
D | sync_tutorial.qbk | 28 auto with_lock_guard( 43 int result = boost::with_lock_guard(m, func, 1, boost::ref(a)); 47 int result = boost::with_lock_guard( 54 int result = boost::with_lock_guard(
|
D | mutex_concepts.qbk | 1122 [section:with_lock_guard With Lock Guard] 1124 // #include <boost/thread/with_lock_guard.hpp> 1129 …auto with_lock_guard(Lockable& m, Function&& func, Args&&... args) -> decltype(func(boost::forward… 1132 [section:with_lock_guard Non Member Function `with_lock_guard`] 1135 auto with_lock_guard(
|
/third_party/boost/libs/thread/example/ |
D | with_lock_guard.cpp | 26 boost::with_lock_guard(m, print_x); in job() 33 boost::with_lock_guard( in job()
|
/third_party/boost/libs/thread/test/ |
D | Jamfile.v2 | 906 [ thread-run2 ../example/with_lock_guard.cpp : ex_with_lock_guard ] 966 …[ thread-run2-noit ./sync/mutual_exclusion/with_lock_guard/with_lock_guard_simple.cpp : with_lock_… 967 …[ thread-run2-noit ./sync/mutual_exclusion/with_lock_guard/with_lock_guard_bind.cpp : with_lock_gu… 968 …[ thread-run2-noit ./sync/mutual_exclusion/with_lock_guard/with_lock_guard_move.cpp : with_lock_gu… 969 …[ thread-run2-noit ./sync/mutual_exclusion/with_lock_guard/with_lock_guard_lambda.cpp : with_lock_…
|