Lines Matching refs:theurl
32 PHPAPI void php_url_free(php_url *theurl) in php_url_free() argument
34 if (theurl->scheme) in php_url_free()
35 zend_string_release_ex(theurl->scheme, 0); in php_url_free()
36 if (theurl->user) in php_url_free()
37 zend_string_release_ex(theurl->user, 0); in php_url_free()
38 if (theurl->pass) in php_url_free()
39 zend_string_release_ex(theurl->pass, 0); in php_url_free()
40 if (theurl->host) in php_url_free()
41 zend_string_release_ex(theurl->host, 0); in php_url_free()
42 if (theurl->path) in php_url_free()
43 zend_string_release_ex(theurl->path, 0); in php_url_free()
44 if (theurl->query) in php_url_free()
45 zend_string_release_ex(theurl->query, 0); in php_url_free()
46 if (theurl->fragment) in php_url_free()
47 zend_string_release_ex(theurl->fragment, 0); in php_url_free()
48 efree(theurl); in php_url_free()