Lines Matching refs:int_status_word
771 int int_status_word; in PHP_FUNCTION() local
777 int_status_word = (int) status_word; in PHP_FUNCTION()
778 if (WIFEXITED(int_status_word)) in PHP_FUNCTION()
792 int int_status_word; in PHP_FUNCTION() local
798 int_status_word = (int) status_word; in PHP_FUNCTION()
799 if (WIFSTOPPED(int_status_word)) in PHP_FUNCTION()
812 int int_status_word; in PHP_FUNCTION() local
818 int_status_word = (int) status_word; in PHP_FUNCTION()
819 if (WIFSIGNALED(int_status_word)) in PHP_FUNCTION()
831 int int_status_word; in PHP_FUNCTION() local
837 int_status_word = (int) status_word; in PHP_FUNCTION()
838 if (WIFCONTINUED(int_status_word)) in PHP_FUNCTION()
852 int int_status_word; in PHP_FUNCTION() local
858 int_status_word = (int) status_word; in PHP_FUNCTION()
859 RETURN_LONG(WEXITSTATUS(int_status_word)); in PHP_FUNCTION()
872 int int_status_word; in PHP_FUNCTION() local
878 int_status_word = (int) status_word; in PHP_FUNCTION()
879 RETURN_LONG(WTERMSIG(int_status_word)); in PHP_FUNCTION()
892 int int_status_word; in PHP_FUNCTION() local
898 int_status_word = (int) status_word; in PHP_FUNCTION()
899 RETURN_LONG(WSTOPSIG(int_status_word)); in PHP_FUNCTION()