resource_to       759 ext/phar/stream.c 	php_url *resource_from, *resource_to;
resource_to       785 ext/phar/stream.c 	if ((resource_to = phar_parse_url(wrapper, url_to, "wb", options|PHP_STREAM_URL_STAT_QUIET TSRMLS_CC)) == NULL) {
resource_to       790 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&pto, resource_to->host, strlen(resource_to->host), NULL, 0, &error TSRMLS_CC)) {
resource_to       802 ext/phar/stream.c 	if (strcmp(resource_from->host, resource_to->host)) {
resource_to       804 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       812 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       817 ext/phar/stream.c 	if (!resource_to->scheme || !resource_to->host || !resource_to->path) {
resource_to       819 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       826 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       831 ext/phar/stream.c 	if (strcasecmp("phar", resource_to->scheme)) {
resource_to       833 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       842 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       850 ext/phar/stream.c 		php_url_free(resource_to);
resource_to       861 ext/phar/stream.c 			php_url_free(resource_to);
resource_to       875 ext/phar/stream.c 		zend_hash_add(&(phar->manifest), resource_to->path+1, strlen(resource_to->path)-1, (void **)&new, sizeof(phar_entry_info), (void **) &entry);
resource_to       877 ext/phar/stream.c 		entry->filename = estrdup(resource_to->path+1);
resource_to       880 ext/phar/stream.c 			php_url_free(resource_to);
resource_to       895 ext/phar/stream.c 			php_url_free(resource_to);
resource_to       909 ext/phar/stream.c 		uint to_len = strlen(resource_to->path+1);
resource_to       923 ext/phar/stream.c 				memcpy(new_str_key, resource_to->path + 1, to_len);
resource_to       947 ext/phar/stream.c 				memcpy(new_str_key, resource_to->path + 1, to_len);
resource_to       967 ext/phar/stream.c 				memcpy(new_str_key, resource_to->path + 1, to_len);
resource_to       981 ext/phar/stream.c 			php_url_free(resource_to);
resource_to       989 ext/phar/stream.c 	php_url_free(resource_to);
resource_to       961 ext/standard/ftp_fopen_wrapper.c 	php_url *resource_from = NULL, *resource_to = NULL;
resource_to       966 ext/standard/ftp_fopen_wrapper.c 	resource_to = php_url_parse(url_to);
resource_to       971 ext/standard/ftp_fopen_wrapper.c 		!resource_to ||
resource_to       973 ext/standard/ftp_fopen_wrapper.c 		!resource_to->scheme ||
resource_to       974 ext/standard/ftp_fopen_wrapper.c 		strcmp(resource_from->scheme, resource_to->scheme) ||
resource_to       976 ext/standard/ftp_fopen_wrapper.c 		!resource_to->host ||
resource_to       977 ext/standard/ftp_fopen_wrapper.c 		strcmp(resource_from->host, resource_to->host) ||
resource_to       978 ext/standard/ftp_fopen_wrapper.c 		(resource_from->port != resource_to->port && 
resource_to       979 ext/standard/ftp_fopen_wrapper.c 		 resource_from->port * resource_to->port != 0 && 
resource_to       980 ext/standard/ftp_fopen_wrapper.c 		 resource_from->port + resource_to->port != 21) ||
resource_to       982 ext/standard/ftp_fopen_wrapper.c 		!resource_to->path) {
resource_to      1006 ext/standard/ftp_fopen_wrapper.c 	php_stream_printf(stream TSRMLS_CC, "RNTO %s\r\n", (resource_to->path != NULL ? resource_to->path : "/"));
resource_to      1017 ext/standard/ftp_fopen_wrapper.c 	php_url_free(resource_to);
resource_to      1025 ext/standard/ftp_fopen_wrapper.c 	if (resource_to) {
resource_to      1026 ext/standard/ftp_fopen_wrapper.c 		php_url_free(resource_to);