Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-7.0/ext/sockets/tests/
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.0/ext/mysqlnd/
H A Dmysqlnd.c74 if (conn->options->charset_name) { in MYSQLND_METHOD()
82 if (conn->options->num_commands) { in MYSQLND_METHOD()
91 if (conn->options->cfg_file) { in MYSQLND_METHOD()
93 conn->options->cfg_file = NULL; in MYSQLND_METHOD()
95 if (conn->options->cfg_section) { in MYSQLND_METHOD()
484 if (options->charset_name && (charset = mysqlnd_find_charset_name(options->charset_name))) { in mysqlnd_switch_to_ssl_if_needed()
630 plugin_data, plugin_data_len, options, &conn->net->data->options, mysql_flags); in mysqlnd_run_authentication()
773 if (net && (net->data->options.ssl_key || net->data->options.ssl_cert || in MYSQLND_METHOD()
774 net->data->options.ssl_ca || net->data->options.ssl_capath || net->data->options.ssl_cipher)) in MYSQLND_METHOD()
1864 int1store(bits, options);
[all …]
/PHP-7.0/ext/json/
H A Dphp_json_scanner.h38 int options; /* options */ member
43 void php_json_scanner_init(php_json_scanner *scanner, char *str, size_t str_len, int options);
/PHP-7.0/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.0/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…
/PHP-7.0/ext/curl/
H A Dshare.c101 zend_long options; in PHP_FUNCTION() local
104 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlz", &zid, &options, &zvalue) == FAILURE) { in PHP_FUNCTION()
112 if (!_php_curl_share_setopt(sh, options, zvalue, return_value)) { in PHP_FUNCTION()
/PHP-7.0/main/streams/
H A Dplain_wrapper.c937 if (options & STREAM_USE_GLOB_DIR_OPEN) { in php_plain_files_dir_opener()
975 int persistent = options & STREAM_OPEN_PERSISTENT; in _php_stream_fopen()
979 if (options & REPORT_ERRORS) { in _php_stream_fopen()
985 if (options & STREAM_ASSUME_REALPATH) { in _php_stream_fopen()
1013 if (options & STREAM_OPEN_FOR_INCLUDE) { in _php_stream_fopen()
1032 if (options & STREAM_OPEN_FOR_INCLUDE) { in _php_stream_fopen()
1047 if (options & STREAM_USE_BLOCKING_PIPE) { in _php_stream_fopen()
1072 return php_stream_fopen_rel(path, mode, opened_path, options); in php_plain_files_stream_opener()
1113 if (options & REPORT_ERRORS) { in php_plain_files_unlink()
1211 int ret, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_plain_files_mkdir()
[all …]
H A Dstreams.c1762 if (options & IGNORE_URL) {
1811 if (options & REPORT_ERRORS) {
1850 if (options & REPORT_ERRORS) {
1864 if (options & REPORT_ERRORS) {
2029 if (options & USE_PATH) {
2035 options &= ~USE_PATH;
2094 (options & STREAM_WILL_CAST)
2113 if (options & REPORT_ERRORS) {
2120 options ^= REPORT_ERRORS;
2183 ZVAL_UNDEF(&context->options);
[all …]
/PHP-7.0/ext/session/
H A Dmod_files.sh36 options="\"Delete directory contents\" \"Choose another directory\" \"Quit\""
37 eval set $options
/PHP-7.0/ext/filter/tests/
H A Dbug73054.phpt11 'options' => ['default' => 2],
14 'options' => ['default' => 2],
/PHP-7.0/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.0/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.0/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.0/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.0/ext/soap/tests/bugs/
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);
H A Dbug31695.phpt14 function __construct($wsdl, $options=array()) {
15 parent::__construct($wsdl, $options);
16 $this->server = new SoapServer($wsdl, $options);
/PHP-7.0/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.0/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.0/ext/filter/
H A Dfilter.c89 ZEND_ARG_INFO(0, options)
95 ZEND_ARG_INFO(0, options)
405 filter_func.function(value, flags, options, charset); in php_zval_filter()
408 if (options && (Z_TYPE_P(options) == IS_ARRAY || Z_TYPE_P(options) == IS_OBJECT) && in php_zval_filter()
411 zend_hash_str_exists(HASH_OF(options), "default", sizeof("default") - 1)) { in php_zval_filter()
516 php_zval_filter(element, filter, flags, options, charset, copy); in php_zval_filter_recursive()
520 php_zval_filter(value, filter, flags, options, charset, copy); in php_zval_filter_recursive()
591 zval *options = NULL; in php_filter_call() local
624 options = option; in php_filter_call()
627 options = option; in php_filter_call()
[all …]
/PHP-7.0/ext/gmp/tests/
H A Dgmp_export.phpt10 // format is [output, size, options, expected]
60 // Invalid options
76 Warning: gmp_export(): Invalid options: Conflicting word orders in %s on line %d
79 Warning: gmp_export(): Invalid options: Conflicting word endianness in %s on line %d
/PHP-7.0/ext/pcre/pcrelib/testdata/
H A Dtestinput229 In 16-bit mode with options: S8>testdata/saved16LE-2
11 In 32-bit mode with options: S8>testdata/saved32LE-2
/PHP-7.0/ext/imap/tests/
H A Dskipif.inc8 $options = OP_HALFOPEN; // this should be enough to verify server present
11 $mbox = @imap_open($mailbox, $username, $password, $options, $retries);

Completed in 210 milliseconds

12345678910>>...19