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