Home | History | Annotate | Download | only in Support

Lines Matching refs:Pool

93   ThreadPool Pool;
95 Pool.async([this, &checked_in, i] {
102 Pool.wait();
113 ThreadPool Pool;
115 Pool.async(TestFunc, std::ref(checked_in), i);
117 Pool.wait();
123 ThreadPool Pool;
125 Pool.async([this, &i] {
129 Pool.async([&i] { ++i; });
132 Pool.wait();
138 ThreadPool Pool;
140 Pool.async([this, &i] {
145 Pool.async([&i] { ++i; }).get();
148 Pool.wait();
157 ThreadPool Pool;
159 Pool.async([this, &checked_in, i] {