Home
last modified time | relevance | path

Searched refs:option (Results 176 – 200 of 275) sorted by relevance

1234567891011

/php-src/ext/standard/tests/general_functions/
H A Dhttp_response_code.phpt9 * that only affects the CLI repeat option, where the response code is not meaningful in the
/php-src/travis/
H A Dcompile.sh21 --enable-option-checking=fatal \
/php-src/ext/curl/tests/
H A Dcurl_pushfunction_trampoline.phpt2 Test trampoline for curl option CURLMOPT_PUSHFUNCTION
H A Dcurl_copy_handle_variation2.phpt9 the only way to test if a option is setten on a curl handle is using the curl_getinfo() function.
/php-src/ext/hash/tests/
H A Dhash_serialize_004.phpt40 HashContext with HASH_HMAC option cannot be serialized
/php-src/ext/intl/calendar/
H A Dcalendar.stub.php343 public function setRepeatedWallTimeOption(int $option): true {} argument
349 public function setSkippedWallTimeOption(int $option): true {} argument
/php-src/ext/curl/
H A Dmulti.c417 static bool _php_curl_multi_setopt(php_curlm *mh, zend_long option, zval *zvalue, zval *return_valu… in _php_curl_multi_setopt() argument
421 switch (option) { in _php_curl_multi_setopt()
435 if (option == CURLMOPT_PIPELINING && (lval & 1)) { in _php_curl_multi_setopt()
442 error = curl_multi_setopt(mh->multi, option, lval); in _php_curl_multi_setopt()
/php-src/ext/xml/tests/
H A Dbug50576.phpt2 Bug #50576 (XML_OPTION_SKIP_TAGSTART option has no effect)
/php-src/Zend/tests/constexpr/
H A Dnew_not_allowed_property.phpt14 // left uninitialized. A third option is another mechanism between object creation and
/php-src/ext/sockets/tests/
H A Dsocket_sendto_zerocopy.phpt29 die("Unable to set the socket option to SO_ZEROCOPY");
/php-src/.github/actions/configure-x32/
H A Daction.yml18 --enable-option-checking=fatal \
/php-src/ext/pgsql/
H A Dpgsql.c1485 Z_PARAM_LONG(option) in PHP_FUNCTION()
1492 switch (option) { in PHP_FUNCTION()
4269 switch (option) { in php_pgsql_fd_set_option()
5357 zend_long option = 0; in PHP_FUNCTION() local
5365 Z_PARAM_LONG(option) in PHP_FUNCTION()
5578 Z_PARAM_LONG(option) in PHP_FUNCTION()
5600 if (option & PGSQL_DML_EXEC) { in PHP_FUNCTION()
5602 option = option & ~PGSQL_DML_EXEC; in PHP_FUNCTION()
5800 Z_PARAM_LONG(option) in PHP_FUNCTION()
5899 Z_PARAM_LONG(option) in PHP_FUNCTION()
[all …]
/php-src/main/streams/
H A Dmemory.c219 static int php_stream_memory_set_option(php_stream *stream, int option, int value, void *ptrparam) … in php_stream_memory_set_option() argument
224 switch(option) { in php_stream_memory_set_option()
514 static int php_stream_temp_set_option(php_stream *stream, int option, int value, void *ptrparam) /*… in php_stream_temp_set_option() argument
518 switch(option) { in php_stream_temp_set_option()
526 return php_stream_set_option(ts->innerstream, option, value, ptrparam); in php_stream_temp_set_option()
H A Dxp_socket.c54 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam);
331 static int php_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam) in php_sockop_set_option() argument
341 switch(option) { in php_sockop_set_option()
895 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam) in php_tcp_sockop_set_option() argument
900 switch(option) { in php_tcp_sockop_set_option()
923 return php_sockop_set_option(stream, option, value, ptrparam); in php_tcp_sockop_set_option()
H A Duserspace.c52 static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, void *va…
867 static int php_userstreamop_set_option(php_stream *stream, int option, int value, void *ptrparam) { in php_userstreamop_set_option() argument
875 switch (option) { in php_userstreamop_set_option()
980 ZVAL_LONG(&args[0], option); in php_userstreamop_set_option()
984 switch(option) { in php_userstreamop_set_option()
1196 static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, in user_wrapper_metadata() argument
1206 switch(option) { in user_wrapper_metadata()
1225 php_error_docref(NULL, E_WARNING, "Unknown option %d for " USERSTREAM_METADATA, option); in user_wrapper_metadata()
1239 ZVAL_LONG(&args[1], option); in user_wrapper_metadata()
/php-src/Zend/tests/
H A Dgh10072.phpt47 public function stream_set_option(int $option, int $arg1, ?int $arg2): bool
/php-src/ext/xsl/tests/
H A Dbug71571_a.phpt2 Request #71571 (XSLT processor should provide option to change maxDepth) - variant A
/php-src/ext/standard/tests/strings/
H A Dhtmlspecialchars_basic.phpt34 echo "\nTry with char set option - specify default ISO-8859-1\n";
77 Try with char set option - specify default ISO-8859-1
/php-src/ext/pgsql/tests/
H A D09notice.phpt46 // Invalid option
/php-src/ext/hash/
H A Dconfig.m47 AC_MSG_WARN([The --with-mhash option and mhash* functions are deprecated as of PHP 8.1.0])
/php-src/.github/actions/configure-macos/
H A Daction.yml23 --enable-option-checking=fatal \
/php-src/
H A D.cirrus.yml17 …- ./configure --prefix=/usr/local --enable-debug --enable-option-checking=fatal --enable-fpm --wit…
/php-src/.github/actions/configure-x64/
H A Daction.yml17 --enable-option-checking=fatal \
/php-src/main/
H A Dphp_streams.h132 int (*set_option)(php_stream *stream, int option, int value, void *ptrparam);
394 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam);
395 #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (op… argument
/php-src/ext/mysqli/
H A Dmysqli.stub.php979 public function options(int $option, $value): bool {}
986 public function set_opt(int $option, $value): bool {}
1525 function mysqli_options(mysqli $mysql, int $option, $value): bool {}
1531 function mysqli_set_opt(mysqli $mysql, int $option, $value): bool {}

Completed in 87 milliseconds

1234567891011