Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 56) sorted by path

123

/ext-fiber/
H A DREADME.md48 public function start(mixed ...$args): mixed {}
124 …er::suspend()` at all). The returned `Fiber` may be started using `Fiber->start(mixed ...$args)` w…
126 …ecution of the current fiber and returns execution to the call to `Fiber->start()`, `Fiber->resume…
H A Dfiber.stub.php10 public function start(mixed ...$args): mixed {} function in Fiber
H A Dfiber_arginfo.h64 ZEND_METHOD(Fiber, start);
86 ZEND_ME(Fiber, start, arginfo_class_Fiber_start, ZEND_ACC_PUBLIC)
/ext-fiber/examples/
H A D001-simple.php8 $value = $fiber->start();
H A D002-read-write.php76 $loop->defer(fn() => $fiber->start());
/ext-fiber/src/
H A Dfiber.c331 ZEND_METHOD(Fiber, start) in ZEND_METHOD() argument
/ext-fiber/stubs/
H A DFiber.php20 public function start(mixed ...$args): mixed {} function in Fiber
/ext-fiber/tests/
H A Dbacktrace-deep-nesting.phpt32 $fiber->start();
H A Dbacktrace-nested.phpt18 $fiber->start();
H A Dbacktrace-object.phpt19 $fiber->start('test');
H A Dcatch-then-suspend.phpt17 var_dump($fiber->start());
H A Dcatch.phpt16 $value = $fiber->start();
H A Ddebug-backtrace.phpt17 $fiber->start();
23 #2 Fiber->start() called at [%sdebug-backtrace.php:12]
H A Ddouble-start.phpt12 $fiber->start();
14 $fiber->start();
18 Fatal error: Uncaught FiberError: Cannot start a fiber that has already been started in %sdouble-st…
20 #0 %sdouble-start.php(%d): Fiber->start()
22 thrown in %sdouble-start.php on line %d
H A Derror-reporting.phpt16 $fiber->start();
H A Dexit-in-fiber.phpt14 $fiber->start();
H A Dfailing-fiber.phpt13 $value = $fiber->start();
H A Dfailing-nested-fiber.phpt14 $value = $fiber->start(1, 2);
19 $fiber->start();
30 #3 %sfailing-nested-fiber.php(%d): Fiber->start()
H A Dfast-finish-fiber.phpt10 var_dump($fiber->start());
H A Dfatal-error-in-fiber.phpt12 $fiber->start();
H A Dfatal-error-in-nested-fiber.phpt14 var_dump($fiber->start());
21 var_dump($fiber->start());
H A Dfatal-error-with-multiple-fibers.phpt21 var_dump($fiber1->start());
22 var_dump($fiber2->start());
H A Dfiber-created-during-cleanup.phpt23 $fiber2->start();
26 $fibers[$i]->start();
H A Dfiber-created-in-destruct.phpt16 var_dump($fiber->start());
H A Dfiber-get-current.phpt14 $fiber->start();

Completed in 31 milliseconds

123