resource_from     759 ext/phar/stream.c 	php_url *resource_from, *resource_to;
resource_from     769 ext/phar/stream.c 	if ((resource_from = phar_parse_url(wrapper, url_from, "wb", options|PHP_STREAM_URL_STAT_QUIET TSRMLS_CC)) == NULL) {
resource_from     773 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&pfrom, resource_from->host, strlen(resource_from->host), NULL, 0, &error TSRMLS_CC)) {
resource_from     780 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     786 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     797 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     802 ext/phar/stream.c 	if (strcmp(resource_from->host, resource_to->host)) {
resource_from     803 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     810 ext/phar/stream.c 	if (!resource_from->scheme || !resource_from->host || !resource_from->path) {
resource_from     811 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     818 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     824 ext/phar/stream.c 	if (strcasecmp("phar", resource_from->scheme)) {
resource_from     825 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     832 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     838 ext/phar/stream.c 	host_len = strlen(resource_from->host);
resource_from     840 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&phar, resource_from->host, host_len, NULL, 0, &error TSRMLS_CC)) {
resource_from     841 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     849 ext/phar/stream.c 		php_url_free(resource_from);
resource_from     855 ext/phar/stream.c 	if (SUCCESS == zend_hash_find(&(phar->manifest), resource_from->path+1, strlen(resource_from->path)-1, (void **)&entry)) {
resource_from     860 ext/phar/stream.c 			php_url_free(resource_from);
resource_from     879 ext/phar/stream.c 			php_url_free(resource_from);
resource_from     891 ext/phar/stream.c 		is_dir = zend_hash_exists(&(phar->virtual_dirs), resource_from->path+1, strlen(resource_from->path)-1);
resource_from     894 ext/phar/stream.c 			php_url_free(resource_from);
resource_from     908 ext/phar/stream.c 		uint from_len = strlen(resource_from->path+1);
resource_from     918 ext/phar/stream.c 				memcmp(str_key, resource_from->path+1, from_len) == 0 &&
resource_from     942 ext/phar/stream.c 				memcmp(str_key, resource_from->path+1, from_len) == 0 &&
resource_from     962 ext/phar/stream.c 				memcmp(str_key, resource_from->path+1, from_len) == 0 &&
resource_from     980 ext/phar/stream.c 			php_url_free(resource_from);
resource_from     988 ext/phar/stream.c 	php_url_free(resource_from);
resource_from     961 ext/standard/ftp_fopen_wrapper.c 	php_url *resource_from = NULL, *resource_to = NULL;
resource_from     965 ext/standard/ftp_fopen_wrapper.c 	resource_from = php_url_parse(url_from);
resource_from     970 ext/standard/ftp_fopen_wrapper.c 	if (!resource_from ||
resource_from     972 ext/standard/ftp_fopen_wrapper.c 		!resource_from->scheme ||
resource_from     974 ext/standard/ftp_fopen_wrapper.c 		strcmp(resource_from->scheme, resource_to->scheme) ||
resource_from     975 ext/standard/ftp_fopen_wrapper.c 		!resource_from->host ||
resource_from     977 ext/standard/ftp_fopen_wrapper.c 		strcmp(resource_from->host, resource_to->host) ||
resource_from     978 ext/standard/ftp_fopen_wrapper.c 		(resource_from->port != resource_to->port && 
resource_from     979 ext/standard/ftp_fopen_wrapper.c 		 resource_from->port * resource_to->port != 0 && 
resource_from     980 ext/standard/ftp_fopen_wrapper.c 		 resource_from->port + resource_to->port != 21) ||
resource_from     981 ext/standard/ftp_fopen_wrapper.c 		!resource_from->path ||
resource_from     989 ext/standard/ftp_fopen_wrapper.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to connect to %s", resource_from->host);
resource_from     995 ext/standard/ftp_fopen_wrapper.c 	php_stream_printf(stream TSRMLS_CC, "RNFR %s\r\n", (resource_from->path != NULL ? resource_from->path : "/"));
resource_from    1016 ext/standard/ftp_fopen_wrapper.c 	php_url_free(resource_from);
resource_from    1022 ext/standard/ftp_fopen_wrapper.c 	if (resource_from) {
resource_from    1023 ext/standard/ftp_fopen_wrapper.c 		php_url_free(resource_from);