Home
last modified time | relevance | path

Searched refs:scheme (Results 26 – 50 of 63) sorted by relevance

123

/PHP-8.3/ext/zlib/tests/
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
H A Dzlib_scheme_stat_basic2.phpt2 Test compress.zlib:// scheme with the unlink function
H A Dzlib_scheme_copy_variation2.phpt2 Test compress.zlib:// scheme with the copy function: uncompressed to compressed
/PHP-8.3/ext/soap/
H A Dphp_http.c468 if (phpurl->scheme != NULL && zend_string_equals_literal(phpurl->scheme, "https")) { in make_http_soap_request()
470 } else if (phpurl->scheme == NULL || !zend_string_equals_literal(phpurl->scheme, "http")) { in make_http_soap_request()
504 (((use_ssl && orig->scheme != NULL && zend_string_equals_literal(orig->scheme, "https")) || in make_http_soap_request()
505 (!use_ssl && orig->scheme == NULL) || in make_http_soap_request()
506 (!use_ssl && !zend_string_equals_literal(orig->scheme, "https"))) && in make_http_soap_request()
566 smart_str_appends(&soap_headers, ZSTR_VAL(phpurl->scheme)); in make_http_soap_request()
1129 if (new_url->scheme == NULL && new_url->path != NULL) { in make_http_soap_request()
1130 new_url->scheme = phpurl->scheme ? zend_string_copy(phpurl->scheme) : NULL; in make_http_soap_request()
1220 if (phpurl->scheme) phpurl->scheme = zend_string_copy(phpurl->scheme); in make_http_soap_request()
/PHP-8.3/ext/phar/
H A Dstream.c87 resource->scheme = ZSTR_INIT_LITERAL("phar", 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()
576 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_stat()
581 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_stat()
685 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_unlink()
691 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_unlink()
805 if (!resource_to->scheme || !resource_to->host || !resource_to->path) { in phar_wrapper_rename()
812 if (!zend_string_equals_literal_ci(resource_from->scheme, "phar")) { in phar_wrapper_rename()
[all …]
H A Ddirstream.c306 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_dir()
317 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_open_dir()
429 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_mkdir()
435 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_mkdir()
564 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_rmdir()
570 if (!zend_string_equals_literal_ci(resource->scheme, "phar")) { in phar_wrapper_rmdir()
/PHP-8.3/ext/standard/
H A Durl.h21 zend_string *scheme; member
H A Dftp_fopen_wrapper.c144 …use_ssl = resource->scheme && (ZSTR_LEN(resource->scheme) > 3) && ZSTR_VAL(resource->scheme)[3] ==… in php_ftp_fopen_connect()
958 !resource_from->scheme || in php_stream_ftp_rename()
959 !resource_to->scheme || in php_stream_ftp_rename()
960 !zend_string_equals(resource_from->scheme, resource_to->scheme) || in php_stream_ftp_rename()
H A Dhttp_fopen_wrapper.c163 ZEND_ASSERT(resource->scheme); in php_stream_url_wrap_http_ex()
164 if (!zend_string_equals_literal_ci(resource->scheme, "http") && in php_stream_url_wrap_http_ex()
165 !zend_string_equals_literal_ci(resource->scheme, "https")) { in php_stream_url_wrap_http_ex()
187 use_ssl = (ZSTR_LEN(resource->scheme) > 4) && ZSTR_VAL(resource->scheme)[4] == 's'; in php_stream_url_wrap_http_ex()
895 …snprintf(new_path, sizeof(new_path) - 1, "%s://%s:%d%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(reso… in php_stream_url_wrap_http_ex()
897 …snprintf(new_path, sizeof(new_path) - 1, "%s://%s%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(resourc… in php_stream_url_wrap_http_ex()
H A Durl_scanner_ex.re206 if (url_parts->scheme
207 && !zend_string_equals_literal_ci(url_parts->scheme, "http")
208 && !zend_string_equals_literal_ci(url_parts->scheme, "https")) {
240 if (url_parts->scheme) {
241 smart_str_appends(dest, ZSTR_VAL(url_parts->scheme));
393 if (url_parts->scheme) {
396 if (!zend_string_equals_literal_ci(url_parts->scheme, "http") &&
397 !zend_string_equals_literal_ci(url_parts->scheme, "https")) {
/PHP-8.3/ext/filter/
H A Dlogical_filters.c609 if (url->scheme != NULL && in php_filter_validate_url()
610 …(zend_string_equals_literal_ci(url->scheme, "http") || zend_string_equals_literal_ci(url->scheme, … in php_filter_validate_url()
634 url->scheme == NULL || in php_filter_validate_url()
636 …equals_literal(url->scheme, "mailto") && !zend_string_equals_literal(url->scheme, "news") && !zend… in php_filter_validate_url()
/PHP-8.3/ext/curl/tests/
H A Dbug77946.phpt8 'unknown://scheme.tld',
/PHP-8.3/ext/iconv/tests/
H A Diconv_mime_encode_001.phpt16 "scheme" => "B"
/PHP-8.3/ext/standard/tests/url/
H A Dparse_url_error_002.phpt23 ["scheme"]=>
H A Dparse_url_basic_002.phpt84 --> scheme: : string(6) "scheme"
H A Durls.inc69 'scheme:',
H A Dparse_url_basic_004.phpt83 --> scheme: : NULL
/PHP-8.3/Zend/tests/closures/
H A Dclosure_from_callable_error.phpt21 echo 'Cannot access privateInstance method statically with colon scheme'."\n";
81 echo 'Cannot access private static method statically with colon scheme'."\n";
198 Cannot access privateInstance method statically with colon scheme
203 Cannot access private static method statically with colon scheme
H A Dclosure_from_callable_basic.phpt16 echo 'Access public static function with colon scheme';
102 Access public static function with colon scheme OK
/PHP-8.3/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt39 list($scheme, $path) = explode('://', $path, 2);
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_connection.c290 DBG_INF_FMT("scheme=%s", conn->scheme.s); in MYSQLND_METHOD()
291 mysqlnd_set_persistent_string(&conn->scheme, NULL, 0, pers); in MYSQLND_METHOD()
497 const MYSQLND_CSTRING * const scheme, in MYSQLND_METHOD()
506 …if (PASS == conn->vio->data->m.connect(conn->vio, *scheme, conn->persistent, conn->stats, conn->er… in MYSQLND_METHOD()
637 const MYSQLND_CSTRING scheme = { transport.s, transport.l }; local
638 …if (FAIL == conn->m->connect_handshake(conn, &scheme, &username, &password, &database, mysql_flags…
657 mysqlnd_set_persistent_string(&conn->scheme, transport.s, transport.l, conn->persistent);
663 if (!conn->scheme.s) {
728 …, conn->error_info->error_no, conn->error_info->error, transport.s ? transport.s : conn->scheme.s);
732 …sg, 0, "Unknown error while trying to connect via %s", transport.s ? transport.s : conn->scheme.s);
[all …]
H A Dmysqlnd_structs.h356 …unc_mysqlnd_vio__connect)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, const bool persis…
359 …mysqlnd_vio__open_stream)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, const bool persis…
363 …lnd_vio__get_open_stream)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, MYSQLND_ERROR_INF…
366 …io__post_connect_set_opt)(MYSQLND_VIO * const vio, const MYSQLND_CSTRING scheme, MYSQLND_STATS * c…
506 …nnect_handshake)(MYSQLND_CONN_DATA * conn, const MYSQLND_CSTRING * const scheme, const MYSQLND_CST…
896 MYSQLND_STRING scheme; member
/PHP-8.3/ext/xmlwriter/
H A Dphp_xmlwriter.c119 if (uri->scheme != NULL) { in _xmlwriter_get_valid_file_path()
147 if ((uri->scheme == NULL || isFileUri)) { in _xmlwriter_get_valid_file_path()
/PHP-8.3/ext/libxml/
H A Dlibxml.c417 if (uri && (uri->scheme == NULL || in php_libxml_streams_IO_open_wrapper()
418 (xmlStrncmp(BAD_CAST uri->scheme, BAD_CAST "file", 4) == 0))) { in php_libxml_streams_IO_open_wrapper()
602 if (puri->scheme != NULL) in php_libxml_output_buffer_create_filename()

Completed in 115 milliseconds

123