Home | History | Annotate | Download | only in Support

Lines Matching refs:async

89   // test that async & barrier work together properly.
95 Pool.async([this, &checked_in, i] {
110 // Test that async works with a function requiring multiple parameters.
115 Pool.async(TestFunc, std::ref(checked_in), i);
121 TEST_F(ThreadPoolTest, Async) {
125 Pool.async([this, &i] {
129 Pool.async([&i] { ++i; });
140 Pool.async([this, &i] {
145 Pool.async([&i] { ++i; }).get();
159 Pool.async([this, &checked_in, i] {