Searched refs:FiberError (Results 1 – 20 of 20) sorted by relevance
/ext-fiber/stubs/ |
H A D | Fiber.php | 17 * @throw FiberError If the fiber has already been started. 30 * @throw FiberError If the fiber has not started, is running, or has terminated. 43 * @throw FiberError If the fiber has not started, is running, or has terminated. 71 * @throws FiberError If the fiber has not terminated or the fiber threw an exception. 89 * @throws FiberError Thrown if not within a fiber (i.e., if called from {main}).
|
H A D | FiberError.php | 6 final class FiberError extends Error class
|
/ext-fiber/tests/ |
H A D | fiber-error-construct.phpt | 2 FiberError cannot be constructed in user code 9 new FiberError; 16 The "FiberError" class is reserved for internal use and cannot be manually instantiated
|
H A D | suspend-outside-fiber.phpt | 12 Fatal error: Uncaught FiberError: Cannot suspend outside of a fiber in %ssuspend-outside-fiber.php:…
|
H A D | suspend-in-force-close-fiber-catching-exception.phpt | 20 } catch (FiberError $exception) {
|
H A D | resume-terminated-fiber.phpt | 16 Fatal error: Uncaught FiberError: Cannot resume a fiber that is not suspended in %sresume-terminate…
|
H A D | double-start.phpt | 18 Fatal error: Uncaught FiberError: Cannot start a fiber that has already been started in %sdouble-st…
|
H A D | resume-non-running-fiber.phpt | 14 Fatal error: Uncaught FiberError: Cannot resume a fiber that is not suspended in %sresume-non-runni…
|
H A D | get-return-from-unstarted-fiber.phpt | 14 Fatal error: Uncaught FiberError: Cannot get fiber return value: The fiber has not been started in …
|
H A D | throw-into-non-running-fiber.phpt | 14 Fatal error: Uncaught FiberError: Cannot resume a fiber that is not suspended in %sthrow-into-non-r…
|
H A D | get-return-in-unfinished-fiber.phpt | 18 Fatal error: Uncaught FiberError: Cannot get fiber return value: The fiber has not returned in %sge…
|
H A D | resume-running-fiber.phpt | 17 Fatal error: Uncaught FiberError: Cannot resume a fiber that is not suspended in %sresume-running-f…
|
H A D | get-return-after-throwing.phpt | 22 Fatal error: Uncaught FiberError: Cannot get fiber return value: The fiber threw an exception in %s…
|
H A D | suspend-in-force-close-fiber.phpt | 28 Next FiberError: Cannot suspend in a force-closed fiber in %ssuspend-in-force-close-fiber.php:%d
|
H A D | unfinished-fiber-with-throw-in-finally.phpt | 32 } catch (FiberError $exception) {
|
H A D | suspend-in-force-close-fiber-after-shutdown.phpt | 30 Next FiberError: Cannot suspend in a force-closed fiber in %ssuspend-in-force-close-fiber-after-shu…
|
/ext-fiber/ |
H A D | fiber.stub.php | 46 final class FiberError extends Error class
|
H A D | README.md | 45 * @throw FiberError If the fiber has already been started. 58 * @throw FiberError If the fiber has not started, is running, or has terminated. 71 * @throw FiberError If the fiber has not started, is running, or has terminated. 99 * @throws FiberError If the fiber has not terminated or the fiber threw an exception. 117 * @throws FiberError Thrown if not within a fiber (i.e., if called from {main}). 126 …e call to these methods. `Fiber::suspend()` will throw an instance of `FiberError` if called outsi… 133 …iber did not return a value). This function will throw an instance of `FiberError` if the fiber ha…
|
H A D | fiber_arginfo.h | 80 ZEND_METHOD(FiberError, __construct); 112 ZEND_ME(FiberError, __construct, arginfo_class_FiberError___construct, ZEND_ACC_PUBLIC)
|
/ext-fiber/src/ |
H A D | fiber.c | 572 ZEND_METHOD(FiberError, __construct) in ZEND_METHOD() argument
|
Completed in 29 milliseconds