Lines Matching refs:int_status_word
773 int int_status_word; in PHP_FUNCTION() local
779 int_status_word = (int) status_word; in PHP_FUNCTION()
780 if (WIFEXITED(int_status_word)) in PHP_FUNCTION()
794 int int_status_word; in PHP_FUNCTION() local
800 int_status_word = (int) status_word; in PHP_FUNCTION()
801 if (WIFSTOPPED(int_status_word)) in PHP_FUNCTION()
814 int int_status_word; in PHP_FUNCTION() local
820 int_status_word = (int) status_word; in PHP_FUNCTION()
821 if (WIFSIGNALED(int_status_word)) in PHP_FUNCTION()
833 int int_status_word; in PHP_FUNCTION() local
839 int_status_word = (int) status_word; in PHP_FUNCTION()
840 if (WIFCONTINUED(int_status_word)) in PHP_FUNCTION()
854 int int_status_word; in PHP_FUNCTION() local
860 int_status_word = (int) status_word; in PHP_FUNCTION()
861 RETURN_LONG(WEXITSTATUS(int_status_word)); in PHP_FUNCTION()
874 int int_status_word; in PHP_FUNCTION() local
880 int_status_word = (int) status_word; in PHP_FUNCTION()
881 RETURN_LONG(WTERMSIG(int_status_word)); in PHP_FUNCTION()
894 int int_status_word; in PHP_FUNCTION() local
900 int_status_word = (int) status_word; in PHP_FUNCTION()
901 RETURN_LONG(WSTOPSIG(int_status_word)); in PHP_FUNCTION()