Lines Matching refs:url

1203 static int php_plain_files_url_stater(php_stream_wrapper *wrapper, const char *url, int flags, php_…  in php_plain_files_url_stater()  argument
1206 if (strncasecmp(url, "file://", sizeof("file://") - 1) == 0) { in php_plain_files_url_stater()
1207 url += sizeof("file://") - 1; in php_plain_files_url_stater()
1210 if (php_check_open_basedir_ex(url, (flags & PHP_STREAM_URL_STAT_QUIET) ? 0 : 1)) { in php_plain_files_url_stater()
1217 return VCWD_LSTAT(url, &ssb->sb); in php_plain_files_url_stater()
1222 return VCWD_LSTAT(url, &ssb->sb); in php_plain_files_url_stater()
1226 return VCWD_STAT(url, &ssb->sb); in php_plain_files_url_stater()
1229 static int php_plain_files_unlink(php_stream_wrapper *wrapper, const char *url, int options, php_st… in php_plain_files_unlink() argument
1233 if (strncasecmp(url, "file://", sizeof("file://") - 1) == 0) { in php_plain_files_unlink()
1234 url += sizeof("file://") - 1; in php_plain_files_unlink()
1237 if (php_check_open_basedir(url)) { in php_plain_files_unlink()
1241 ret = VCWD_UNLINK(url); in php_plain_files_unlink()
1244 php_error_docref1(NULL, url, E_WARNING, "%s", strerror(errno)); in php_plain_files_unlink()
1448 static int php_plain_files_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_str… in php_plain_files_rmdir() argument
1450 if (strncasecmp(url, "file://", sizeof("file://") - 1) == 0) { in php_plain_files_rmdir()
1451 url += sizeof("file://") - 1; in php_plain_files_rmdir()
1454 if (php_check_open_basedir(url)) { in php_plain_files_rmdir()
1459 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_rmdir()
1460 php_error_docref1(NULL, url, E_WARNING, "%s", strerror(ENOENT)); in php_plain_files_rmdir()
1465 if (VCWD_RMDIR(url) < 0) { in php_plain_files_rmdir()
1466 php_error_docref1(NULL, url, E_WARNING, "%s", strerror(errno)); in php_plain_files_rmdir()
1476 static int php_plain_files_metadata(php_stream_wrapper *wrapper, const char *url, int option, void … in php_plain_files_metadata() argument
1487 if (!php_win32_check_trailing_space(url, strlen(url))) { in php_plain_files_metadata()
1488 php_error_docref1(NULL, url, E_WARNING, "%s", strerror(ENOENT)); in php_plain_files_metadata()
1493 if (strncasecmp(url, "file://", sizeof("file://") - 1) == 0) { in php_plain_files_metadata()
1494 url += sizeof("file://") - 1; in php_plain_files_metadata()
1497 if (php_check_open_basedir(url)) { in php_plain_files_metadata()
1504 if (VCWD_ACCESS(url, F_OK) != 0) { in php_plain_files_metadata()
1505 FILE *file = VCWD_FOPEN(url, "w"); in php_plain_files_metadata()
1507 …php_error_docref1(NULL, url, E_WARNING, "Unable to create file %s because %s", url, strerror(errno… in php_plain_files_metadata()
1513 ret = VCWD_UTIME(url, newtime); in php_plain_files_metadata()
1520 php_error_docref1(NULL, url, E_WARNING, "Unable to find uid for %s", (char *)value); in php_plain_files_metadata()
1526 ret = VCWD_CHOWN(url, uid, -1); in php_plain_files_metadata()
1532 php_error_docref1(NULL, url, E_WARNING, "Unable to find gid for %s", (char *)value); in php_plain_files_metadata()
1538 ret = VCWD_CHOWN(url, -1, gid); in php_plain_files_metadata()
1543 ret = VCWD_CHMOD(url, mode); in php_plain_files_metadata()
1550 php_error_docref1(NULL, url, E_WARNING, "Operation failed: %s", strerror(errno)); in php_plain_files_metadata()