• Home
  • Raw
  • Download

Lines Matching refs:fiber

50     ctx::fiber foo( ctx::fiber && f, int i) {  in foo()
109 ctx::fiber f;
110 my_exception( ctx::fiber && f_, char const* what) : in my_exception()
134 ctx::fiber f1{ in test_move()
135 [&i](ctx::fiber && f) { in test_move()
144 ctx::fiber f2; in test_move()
159 ctx::fiber f{ std::bind( & X::foo, x, std::placeholders::_1, 7) }; in test_bind()
167 ctx::fiber f{ in test_exception()
168 [&what](ctx::fiber && f) { in test_exception()
184 ctx::fiber f{ [&catched](ctx::fiber && f){ in test_exception()
199 ctx::fiber f{ in test_fp()
200 [&d]( ctx::fiber && f) { in test_fp()
213 ctx::fiber f{ in test_stacked()
214 [](ctx::fiber && f) { in test_stacked()
215 ctx::fiber f1{ in test_stacked()
216 [](ctx::fiber && f) { in test_stacked()
237 ctx::fiber f{ in test_prealloc()
239 [&i]( ctx::fiber && f) { in test_prealloc()
251 ctx::fiber f{ [&i](ctx::fiber && f) { in test_ontop()
260 auto fn = [&i](ctx::fiber && f){ in test_ontop()
269 ctx::fiber f1; in test_ontop()
270 ctx::fiber f{ [&f1](ctx::fiber && f) { in test_ontop()
277 [&f1](ctx::fiber && f){ in test_ontop()
287 ctx::fiber f{ [](ctx::fiber && f){ in test_ontop_exception()
303 [what](ctx::fiber && f){ in test_ontop_exception()
314 ctx::fiber f{ in test_termination1()
315 [](ctx::fiber && f){ in test_termination1()
327 ctx::fiber f{ in test_termination1()
328 [](ctx::fiber && f) { in test_termination1()
340 ctx::fiber f{ in test_termination1()
341 [&i](ctx::fiber && f){ in test_termination1()
362 ctx::fiber f{ in test_termination2()
363 [](ctx::fiber && f){ in test_termination2()
385 ctx::fiber{ in test_sscanf()
386 []( ctx::fiber && f) { in test_sscanf()
413 ctx::fiber{ in test_snprintf()
414 []( ctx::fiber && f) { in test_snprintf()
435 ctx::fiber{ in test_bug12215()
436 [](ctx::fiber && f) { in test_bug12215()
448 ctx::fiber f{ in test_goodcatch()
449 []( ctx::fiber && f) { in test_goodcatch()
483 ctx::fiber f{ in test_badcatch()
484 []( ctx::fiber && f) { in test_badcatch()