Lines Matching refs:p
589 char *p; in PHP_FUNCTION() local
593 if (NULL == (p = getlogin())) { in PHP_FUNCTION()
598 RETURN_STRING(p); in PHP_FUNCTION()
788 char *p; in PHP_FUNCTION() local
813 p = emalloc(buflen); in PHP_FUNCTION()
815 if (ttyname_r(fd, p, buflen)) { in PHP_FUNCTION()
817 efree(p); in PHP_FUNCTION()
820 RETURN_STRING(p); in PHP_FUNCTION()
821 efree(p); in PHP_FUNCTION()
823 if (NULL == (p = ttyname(fd))) { in PHP_FUNCTION()
828 RETURN_STRING(p); in PHP_FUNCTION()
876 char *p; in PHP_FUNCTION() local
880 p = VCWD_GETCWD(buffer, MAXPATHLEN); in PHP_FUNCTION()
881 if (!p) { in PHP_FUNCTION()