Home
last modified time | relevance | path

Searched refs:options (Results 51 – 75 of 490) sorted by relevance

12345678910>>...20

/PHP-7.2/ext/sockets/tests/
H A Dsocket_set_option_rcvtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
25 $retval_2 = socket_set_option( $socket, SOL_SOCKET, SO_RCVTIMEO, $options);
29 var_dump($retval_3 === $options);
H A Dsocket_set_option_sndtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
25 $retval_2 = socket_set_option( $socket, SOL_SOCKET, SO_SNDTIMEO, $options);
29 var_dump($retval_3 === $options);
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug34643.phpt19 function __construct($wsdl, $options) {
20 parent::__construct($wsdl, $options);
21 $this->server = new SoapServer($wsdl, $options);
H A Dbug50762.phpt19 function __construct($wsdl, $options) {
20 parent::__construct($wsdl, $options);
21 $this->server = new SoapServer($wsdl, $options);
H A Dbug30928.phpt21 function __construct($wsdl, $options) {
22 parent::__construct($wsdl, $options);
23 $this->server = new SoapServer($wsdl, $options);
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_connection.c237 if (conn->options->charset_name) { in MYSQLND_METHOD()
241 if (conn->options->auth_protocol) { in MYSQLND_METHOD()
245 if (conn->options->num_commands) { in MYSQLND_METHOD()
254 if (conn->options->cfg_file) { in MYSQLND_METHOD()
256 conn->options->cfg_file = NULL; in MYSQLND_METHOD()
258 if (conn->options->cfg_section) { in MYSQLND_METHOD()
262 if (conn->options->connect_attr) { in MYSQLND_METHOD()
513 vio->data->options.ssl_cert || in MYSQLND_METHOD()
514 vio->data->options.ssl_ca || in MYSQLND_METHOD()
522 if (conn->options->connect_attr && zend_hash_num_elements(conn->options->connect_attr)) { in MYSQLND_METHOD()
[all …]
/PHP-7.2/ext/json/
H A Dphp_json.h98 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth);
99 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options);
100 …_json_decode_ex(zval *return_value, char *str, size_t str_len, zend_long options, zend_long depth);
H A Dphp_json_scanner.h38 int options; /* options */ member
45 void php_json_scanner_init(php_json_scanner *scanner, char *str, size_t str_len, int options);
/PHP-7.2/ext/soap/tests/
H A Dclassmap003.phpt30 function __construct($wsdl, $options) {
31 parent::__construct($wsdl, $options);
32 $this->server = new SoapServer($wsdl, $options);
H A Dclassmap004.phpt38 function __construct($wsdl, $options) {
39 parent::__construct($wsdl, $options);
40 $this->server = new SoapServer($wsdl, $options);
/PHP-7.2/ext/standard/
H A Dphp_fopen_wrappers.h26 …ttp(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **op…
27 …ftp(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **op…
H A Dhttp_fopen_wrapper.c111 const char *path, const char *mode, int options, zend_string **opened_path, in php_stream_url_wrap_http_ex() argument
216 stream = php_stream_xport_create(transport_string, transport_len, options, in php_stream_url_wrap_http_ex()
225 php_stream_wrapper_log_error(wrapper, options, "%s", ZSTR_VAL(errstr)); in php_stream_url_wrap_http_ex()
342 if (options & STREAM_WILL_CAST) in php_stream_url_wrap_http_ex()
680 if ((options & STREAM_ONLY_GET_HEADERS) || ignore_errors) { in php_stream_url_wrap_http_ex()
732 php_stream_wrapper_log_error(wrapper, options, "HTTP request failed!"); in php_stream_url_wrap_http_ex()
753 php_stream_wrapper_log_error(wrapper, options, "Failed to read HTTP headers"); in php_stream_url_wrap_http_ex()
817 if (!(options & STREAM_ONLY_GET_HEADERS)) { in php_stream_url_wrap_http_ex()
927 wrapper, new_path, mode, options, opened_path, context, in php_stream_url_wrap_http_ex()
952 if (options & STREAM_WILL_CAST) in php_stream_url_wrap_http_ex()
[all …]
/PHP-7.2/main/streams/
H A Dplain_wrapper.c940 if (options & STREAM_USE_GLOB_DIR_OPEN) { in php_plain_files_dir_opener()
978 int persistent = options & STREAM_OPEN_PERSISTENT; in _php_stream_fopen()
982 if (options & REPORT_ERRORS) { in _php_stream_fopen()
988 if (options & STREAM_ASSUME_REALPATH) { in _php_stream_fopen()
1018 if (options & STREAM_OPEN_FOR_INCLUDE) { in _php_stream_fopen()
1037 if (options & STREAM_OPEN_FOR_INCLUDE) { in _php_stream_fopen()
1052 if (options & STREAM_USE_BLOCKING_PIPE) { in _php_stream_fopen()
1077 return php_stream_fopen_rel(path, mode, opened_path, options); in php_plain_files_stream_opener()
1118 if (options & REPORT_ERRORS) { in php_plain_files_unlink()
1233 int ret, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_plain_files_mkdir()
[all …]
H A Dstreams.c1741 if (options & IGNORE_URL) {
1790 if (options & REPORT_ERRORS) {
1829 if (options & REPORT_ERRORS) {
1843 if (options & REPORT_ERRORS) {
2010 if (options & USE_PATH) {
2016 options &= ~USE_PATH;
2075 (options & STREAM_WILL_CAST)
2094 if (options & REPORT_ERRORS) {
2101 options ^= REPORT_ERRORS;
2164 ZVAL_UNDEF(&context->options);
[all …]
/PHP-7.2/ext/session/
H A Dmod_files.sh37 options="\"Delete directory contents\" \"Choose another directory\" \"Quit\""
38 eval set $options
/PHP-7.2/ext/filter/tests/
H A Dbug73054.phpt11 'options' => ['default' => 2],
14 'options' => ['default' => 2],
/PHP-7.2/ext/xmlrpc/libxmlrpc/
H A Dxml_element.h162 char* xml_elem_serialize_to_string(xml_element *el, XML_ELEM_OUTPUT_OPTIONS options, int *buf_len);
163 void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options);
164 xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_EL…
/PHP-7.2/ext/standard/tests/streams/
H A Dbug40459.phpt14 function stream_open($path, $mode, $options, &$opened_path)
36 function mkdir($dir, $mode, $options)
41 function rmdir($dir, $options)
46 function dir_opendir($url, $options)
/PHP-7.2/ext/standard/tests/http/
H A Dbug75981.phpt11 $options = [
18 $ctx = stream_context_create($options);
H A Dbug73297.phpt11 $options = [
18 $ctx = stream_context_create($options);
/PHP-7.2/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options_libmysql.phpt2 MySQL PDO->__construct(), libmysql only options
9 die("skip libmysql only options")
24 printf("[%03d] Execting '%s'/%s got '%s'/%s' for options '%s'\n",
55 /* TODO getAttribute() is pretty poor in supporting the options, suppress errors */
82 [026] Execting '1'/boolean got ''/boolean' for options 'PDO::MYSQL_ATTR_READ_DEFAULT_FILE'
/PHP-7.2/ext/curl/tests/
H A Dbug48203_multi.phpt16 $options = array(
24 $options[CURLOPT_VERBOSE] = 1;
28 $options[CURLOPT_UPLOAD] = 1;
31 curl_setopt_array($ch1, $options);
32 curl_setopt_array($ch2, $options);
/PHP-7.2/ext/xmlrpc/
H A Dxmlrpc-epi-php.c363 if (options) { in set_output_options()
365 options->b_php_out = 0; in set_output_options()
366 options->b_auto_version = 1; in set_output_options()
367 options->xmlrpc_out.version = xmlrpc_version_1_0; in set_output_options()
379 options->b_php_out = 1; in set_output_options()
381 options->b_php_out = 0; in set_output_options()
402 options->b_auto_version = 0; in set_output_options()
404 options->xmlrpc_out.version = xmlrpc_version_1_0; in set_output_options()
406 options->xmlrpc_out.version = xmlrpc_version_simple; in set_output_options()
408 options->xmlrpc_out.version = xmlrpc_version_soap_1_1; in set_output_options()
[all …]
/PHP-7.2/ext/filter/
H A Dfilter.c89 ZEND_ARG_INFO(0, options)
95 ZEND_ARG_INFO(0, options)
407 filter_func.function(value, flags, options, charset); in php_zval_filter()
410 if (options && (Z_TYPE_P(options) == IS_ARRAY || Z_TYPE_P(options) == IS_OBJECT) && in php_zval_filter()
413 zend_hash_str_exists(HASH_OF(options), "default", sizeof("default") - 1)) { in php_zval_filter()
518 php_zval_filter(element, filter, flags, options, charset, copy); in php_zval_filter_recursive()
522 php_zval_filter(value, filter, flags, options, charset, copy); in php_zval_filter_recursive()
593 zval *options = NULL; in php_filter_call() local
629 options = option; in php_filter_call()
632 options = option; in php_filter_call()
[all …]
/PHP-7.2/ext/gmp/tests/
H A Dgmp_export.phpt10 // format is [output, size, options, expected]
60 // Invalid options
75 Warning: gmp_export(): Invalid options: Conflicting word orders in %s on line %d
78 Warning: gmp_export(): Invalid options: Conflicting word endianness in %s on line %d

Completed in 80 milliseconds

12345678910>>...20