Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 58) sorted by relevance

123

/PHP-7.4/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt30 ["scheme"]=>
37 ["scheme"]=>
70 ["scheme"]=>
77 ["scheme"]=>
96 ["scheme"]=>
103 ["scheme"]=>
119 ["scheme"]=>
128 ["scheme"]=>
139 ["scheme"]=>
162 ["scheme"]=>
[all …]
H A Dparse_url_unterminated.phpt32 ["scheme"]=>
39 ["scheme"]=>
72 ["scheme"]=>
79 ["scheme"]=>
98 ["scheme"]=>
105 ["scheme"]=>
121 ["scheme"]=>
130 ["scheme"]=>
141 ["scheme"]=>
164 ["scheme"]=>
[all …]
H A Dbug73192.phpt12 ["scheme"]=>
22 ["scheme"]=>
H A Dbug54180.phpt12 ["scheme"]=>
24 ["scheme"]=>
H A Dbug63162.phpt16 ["scheme"]=>
/PHP-7.4/ext/standard/tests/strings/
H A Durl_t.phpt71 'scheme:',
99 ["scheme"]=>
106 ["scheme"]=>
139 ["scheme"]=>
146 ["scheme"]=>
165 ["scheme"]=>
172 ["scheme"]=>
188 ["scheme"]=>
197 ["scheme"]=>
208 ["scheme"]=>
[all …]
/PHP-7.4/ext/standard/
H A Durl.c39 if (theurl->scheme) in php_url_free()
40 zend_string_release_ex(theurl->scheme, 0); in php_url_free()
142 ret->scheme = zend_string_init(s, (e - s), 0); in php_url_parse_ex2()
143 php_replace_controlchars_ex(ZSTR_VAL(ret->scheme), ZSTR_LEN(ret->scheme)); in php_url_parse_ex2()
164 ret->scheme = zend_string_init(s, (e-s), 0); in php_url_parse_ex2()
165 php_replace_controlchars_ex(ZSTR_VAL(ret->scheme), ZSTR_LEN(ret->scheme)); in php_url_parse_ex2()
170 ret->scheme = zend_string_init(s, (e-s), 0); in php_url_parse_ex2()
171 php_replace_controlchars_ex(ZSTR_VAL(ret->scheme), ZSTR_LEN(ret->scheme)); in php_url_parse_ex2()
359 if (resource->scheme != NULL) RETVAL_STR_COPY(resource->scheme); in PHP_FUNCTION()
393 if (resource->scheme != NULL) { in PHP_FUNCTION()
[all …]
H A Durl.h23 zend_string *scheme; member
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_vio.c132 …net_stream = php_stream_open_wrapper(scheme.s + sizeof("pipe://") - 1, "r+", streams_options, NULL… in MYSQLND_METHOD()
183 net_stream = php_stream_xport_create(scheme.s, scheme.l, streams_options, streams_flags, in MYSQLND_METHOD()
246 …ND_METHOD(mysqlnd_vio, post_connect_set_opt)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, in MYSQLND_METHOD()
260 if (!memcmp(scheme.s, "tcp://", sizeof("tcp://") - 1)) { in MYSQLND_METHOD()
277 MYSQLND_METHOD(mysqlnd_vio, get_open_stream)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, in MYSQLND_METHOD()
282 if (scheme.l > (sizeof("pipe://") - 1) && !memcmp(scheme.s, "pipe://", sizeof("pipe://") - 1)) { in MYSQLND_METHOD()
284 } else if ((scheme.l > (sizeof("tcp://") - 1) && !memcmp(scheme.s, "tcp://", sizeof("tcp://") - 1)) in MYSQLND_METHOD()
286 (scheme.l > (sizeof("unix://") - 1) && !memcmp(scheme.s, "unix://", sizeof("unix://") - 1))) in MYSQLND_METHOD()
311 open_stream = vio->data->m.get_open_stream(vio, scheme, error_info); in MYSQLND_METHOD()
313 php_stream * net_stream = open_stream(vio, scheme, persistent, conn_stats, error_info); in MYSQLND_METHOD()
[all …]
/PHP-7.4/ext/iconv/tests/
H A Dbug48289.phpt2 Bug #48289 (iconv_mime_encode() quoted-printable scheme is broken)
9 'scheme' => 'Q',
H A Dbug53891.phpt10 'scheme' => 'Q',
H A Dbug66828.phpt14 "scheme" => "Q"
/PHP-7.4/ext/zlib/tests/
H A Dzlib_scheme_fopen_variation1.phpt2 Test compress.zlib:// scheme with the fopen on a file scheme
H A Dzlib_scheme_unlink_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_rename_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_stat_basic.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_dir_basic.phpt2 Test compress.zlib:// scheme with the directory functions
H A Dzlib_scheme_file_put_contents_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_file_read_file_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_file_get_contents_basic.phpt2 Test compress.zlib:// scheme with the file_get_contents
H A Dzlib_scheme_fopen_basic.phpt2 Test compress.zlib:// scheme with the fopen
H A Dzlib_scheme_file_basic.phpt2 Test compress.zlib:// scheme with the file
H A Dzlib_scheme_copy_basic.phpt2 Test compress.zlib:// scheme with the copy function: compressed to compressed
H A Dzlib_scheme_copy_variation1.phpt2 Test compress.zlib:// scheme with the copy function: compressed to uncompressed
/PHP-7.4/ext/phar/
H A Dstream.c87 resource->scheme = zend_string_init("phar", 4, 0); in phar_parse_url()
96 fprintf(stderr, "Scheme: %s\n", ZSTR_VAL(resource->scheme)); in phar_parse_url()
178 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_url()
184 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_open_url()
568 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_stat()
573 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_stat()
677 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_unlink()
683 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_unlink()
796 if (!resource_to->scheme || !resource_to->host || !resource_to->path) { in phar_wrapper_rename()
803 if (!zend_string_equals_literal_ci(resource_from->scheme, "phar")) { in phar_wrapper_rename()
[all …]

Completed in 56 milliseconds

123