Searched refs:dest_p (Results 1 – 2 of 2) sorted by relevance
/PHP-5.6/ext/standard/ |
H A D | link.c | 125 char dest_p[MAXPATHLEN]; in PHP_FUNCTION() local 141 if (!expand_filepath_ex(topath, dest_p, dirname, len TSRMLS_CC)) { in PHP_FUNCTION() 147 php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ) in PHP_FUNCTION() 153 if (php_check_open_basedir(dest_p TSRMLS_CC)) { in PHP_FUNCTION() 183 char dest_p[MAXPATHLEN]; in PHP_FUNCTION() local 189 if (!expand_filepath(frompath, source_p TSRMLS_CC) || !expand_filepath(topath, dest_p TSRMLS_CC)) { in PHP_FUNCTION() 195 php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ) in PHP_FUNCTION() 201 if (php_check_open_basedir(dest_p TSRMLS_CC)) { in PHP_FUNCTION() 212 ret = link(dest_p, source_p); in PHP_FUNCTION()
|
H A D | link_win32.c | 127 char dest_p[MAXPATHLEN]; in PHP_FUNCTION() local 160 if (!expand_filepath_ex(topath, dest_p, dirname, len TSRMLS_CC)) { in PHP_FUNCTION() 166 php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ) in PHP_FUNCTION() 172 if (OPENBASEDIR_CHECKPATH(dest_p)) { in PHP_FUNCTION() 207 char dest_p[MAXPATHLEN]; in PHP_FUNCTION() local 215 if (!expand_filepath(frompath, source_p TSRMLS_CC) || !expand_filepath(topath, dest_p TSRMLS_CC)) { in PHP_FUNCTION() 221 php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ) in PHP_FUNCTION() 231 if (OPENBASEDIR_CHECKPATH(dest_p)) { in PHP_FUNCTION() 238 ret = CreateHardLinkA(dest_p, source_p, NULL); in PHP_FUNCTION()
|
Completed in 9 milliseconds