Lines Matching refs:url_from

1203 static int php_plain_files_rename(php_stream_wrapper *wrapper, const char *url_from, const char *ur…  in php_plain_files_rename()  argument
1207 if (!url_from || !url_to) { in php_plain_files_rename()
1212 if (!php_win32_check_trailing_space(url_from, strlen(url_from))) { in php_plain_files_rename()
1213 php_win32_docref2_from_error(ERROR_INVALID_NAME, url_from, url_to); in php_plain_files_rename()
1217 php_win32_docref2_from_error(ERROR_INVALID_NAME, url_from, url_to); in php_plain_files_rename()
1222 if (strncasecmp(url_from, "file://", sizeof("file://") - 1) == 0) { in php_plain_files_rename()
1223 url_from += sizeof("file://") - 1; in php_plain_files_rename()
1230 if (php_check_open_basedir(url_from) || php_check_open_basedir(url_to)) { in php_plain_files_rename()
1234 ret = VCWD_RENAME(url_from, url_to); in php_plain_files_rename()
1246 if (php_copy_file(url_from, url_to) == SUCCESS) { in php_plain_files_rename()
1247 if (VCWD_STAT(url_from, &sb) == 0) { in php_plain_files_rename()
1258 php_error_docref2(NULL, url_from, url_to, E_WARNING, "%s", strerror(errno)); in php_plain_files_rename()
1266 php_error_docref2(NULL, url_from, url_to, E_WARNING, "%s", strerror(errno)); in php_plain_files_rename()
1274 VCWD_UNLINK(url_from); in php_plain_files_rename()
1277 php_error_docref2(NULL, url_from, url_to, E_WARNING, "%s", strerror(errno)); in php_plain_files_rename()
1280 php_error_docref2(NULL, url_from, url_to, E_WARNING, "%s", strerror(errno)); in php_plain_files_rename()
1291 php_win32_docref2_from_error(GetLastError(), url_from, url_to); in php_plain_files_rename()
1293 php_error_docref2(NULL, url_from, url_to, E_WARNING, "%s", strerror(errno)); in php_plain_files_rename()