Lines Matching refs:ret
58 ssize_t ret; in PHP_FUNCTION() local
68 ret = php_sys_readlink(link, buff, MAXPATHLEN-1); in PHP_FUNCTION()
70 if (ret == -1) { in PHP_FUNCTION()
75 buff[ret] = '\0'; in PHP_FUNCTION()
77 RETURN_STRINGL(buff, ret); in PHP_FUNCTION()
89 int ret; in PHP_FUNCTION() local
103 ret = VCWD_LSTAT(link, &sb); in PHP_FUNCTION()
104 if (ret == -1) { in PHP_FUNCTION()
121 int ret; in PHP_FUNCTION() local
163 ret = symlink(topath, source_p); in PHP_FUNCTION()
165 if (ret == -1) { in PHP_FUNCTION()
180 int ret; in PHP_FUNCTION() local
210 ret = link(topath, frompath); in PHP_FUNCTION()
212 ret = link(dest_p, source_p); in PHP_FUNCTION()
214 if (ret == -1) { in PHP_FUNCTION()