Lines Matching refs:int_status_word
363 int int_status_word = (int) status_word; in PHP_FUNCTION() local
364 if (WIFEXITED(int_status_word)) { in PHP_FUNCTION()
383 int int_status_word = (int) status_word; in PHP_FUNCTION() local
384 if (WIFSTOPPED(int_status_word)) { in PHP_FUNCTION()
403 int int_status_word = (int) status_word; in PHP_FUNCTION() local
404 if (WIFSIGNALED(int_status_word)) { in PHP_FUNCTION()
423 int int_status_word = (int) status_word; in PHP_FUNCTION() local
424 if (WIFCONTINUED(int_status_word)) { in PHP_FUNCTION()
443 int int_status_word = (int) status_word; in PHP_FUNCTION() local
444 RETURN_LONG(WEXITSTATUS(int_status_word)); in PHP_FUNCTION()
461 int int_status_word = (int) status_word; in PHP_FUNCTION() local
462 RETURN_LONG(WTERMSIG(int_status_word)); in PHP_FUNCTION()
479 int int_status_word = (int) status_word; in PHP_FUNCTION() local
480 RETURN_LONG(WSTOPSIG(int_status_word)); in PHP_FUNCTION()