Lines Matching refs:ret
62 ssize_t ret; in PHP_FUNCTION() local
72 ret = php_sys_readlink(link, buff, MAXPATHLEN-1); in PHP_FUNCTION()
74 if (ret == -1) { in PHP_FUNCTION()
83 buff[ret] = '\0'; in PHP_FUNCTION()
85 RETURN_STRINGL(buff, ret); in PHP_FUNCTION()
96 int ret; in PHP_FUNCTION() local
111 ret = VCWD_LSTAT(link, &sb); in PHP_FUNCTION()
112 if (ret == -1) { in PHP_FUNCTION()
128 int ret; in PHP_FUNCTION() local
170 ret = php_sys_symlink(topath, source_p); in PHP_FUNCTION()
172 if (ret == -1) { in PHP_FUNCTION()
186 int ret; in PHP_FUNCTION() local
216 ret = php_sys_link(topath, frompath); in PHP_FUNCTION()
218 ret = php_sys_link(dest_p, source_p); in PHP_FUNCTION()
220 if (ret == -1) { in PHP_FUNCTION()