Lines Matching refs:status_word
636 long status_word; in PHP_FUNCTION() local
638 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
642 if (WIFEXITED(status_word)) in PHP_FUNCTION()
654 long status_word; in PHP_FUNCTION() local
656 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
660 if (WIFSTOPPED(status_word)) in PHP_FUNCTION()
672 long status_word; in PHP_FUNCTION() local
674 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
678 if (WIFSIGNALED(status_word)) in PHP_FUNCTION()
690 long status_word; in PHP_FUNCTION() local
692 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
696 RETURN_LONG(WEXITSTATUS(status_word)); in PHP_FUNCTION()
708 long status_word; in PHP_FUNCTION() local
710 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
714 RETURN_LONG(WTERMSIG(status_word)); in PHP_FUNCTION()
726 long status_word; in PHP_FUNCTION() local
728 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status_word) == FAILURE) { in PHP_FUNCTION()
732 RETURN_LONG(WSTOPSIG(status_word)); in PHP_FUNCTION()