Home
last modified time | relevance | path

Searched refs:timeout (Results 51 – 75 of 97) sorted by relevance

1234

/PHP-5.5/ext/curl/tests/
H A Dcurl_multi_select_basic1.phpt10 /* Prototype : resource curl_multi_select($mh, $timeout=1.0])
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c175 int sig, timeout; in fpm_pctl_action_next() local
187 timeout = fpm_global_config.process_control_timeout; in fpm_pctl_action_next()
194 timeout = 1; in fpm_pctl_action_next()
199 fpm_pctl_timeout_set(timeout); in fpm_pctl_action_next()
/PHP-5.5/ext/snmp/tests/
H A Dbug60749.phpt20 $session = new SNMP(SNMP::VERSION_1, "$hostname:$port", $community, $timeout, $retries);
H A Dsnmp-object-setSecurity_error.phpt17 $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries);
/PHP-5.5/ext/mbstring/libmbfl/tests/strcut.tests/
H A Dujis.exp8 set timeout 1
H A Dutf8.exp8 set timeout 1
H A Diso2022jp.exp8 set timeout 10
/PHP-5.5/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dyensign.exp2 set timeout 1
/PHP-5.5/ext/standard/
H A Dhttp_fopen_wrapper.c134 struct timeval timeout; in php_stream_url_wrap_http_ex() local
200 timeout.tv_sec = (time_t) Z_DVAL_PP(tmpzval); in php_stream_url_wrap_http_ex()
201 timeout.tv_usec = (size_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000); in php_stream_url_wrap_http_ex()
203 timeout.tv_sec = FG(default_socket_timeout); in php_stream_url_wrap_http_ex()
204 timeout.tv_usec = 0; in php_stream_url_wrap_http_ex()
209 NULL, &timeout, context, &errstr, NULL); in php_stream_url_wrap_http_ex()
212 php_stream_set_option(stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &timeout); in php_stream_url_wrap_http_ex()
H A Dstreamsfuncs.c91 double timeout = FG(default_socket_timeout); in PHP_FUNCTION() local
103 …D_NUM_ARGS() TSRMLS_CC, "s|zzdlr", &host, &host_len, &zerrno, &zerrstr, &timeout, &flags, &zcontex… in PHP_FUNCTION()
114 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
242 double timeout = FG(default_socket_timeout); in PHP_FUNCTION() local
253 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|dz", &zstream, &timeout, &zpeername) == FA… in PHP_FUNCTION()
260 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
/PHP-5.5/
H A D.travis.yml51 …n-tests.php -p `pwd`/sapi/cli/php -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --show-diff --set-timeout 120
/PHP-5.5/ext/standard/tests/http/
H A Dbug60570.phpt26 $context = stream_context_create(array('http'=>array('timeout'=>1)));
/PHP-5.5/ext/ldap/
H A Dldap.c1974 struct timeval *timeout = NULL; in PHP_FUNCTION() local
1977 if (timeout) { in PHP_FUNCTION()
1978 ldap_memfree(timeout); in PHP_FUNCTION()
1982 if (!timeout) { in PHP_FUNCTION()
1986 ZVAL_LONG(retval, timeout->tv_sec); in PHP_FUNCTION()
1987 ldap_memfree(timeout); in PHP_FUNCTION()
1992 int timeout; in PHP_FUNCTION() local
2083 struct timeval timeout; in PHP_FUNCTION() local
2086 timeout.tv_sec = Z_LVAL_PP(newval); in PHP_FUNCTION()
2087 timeout.tv_usec = 0; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_reconnect.phpt68 printf("[009] Server should have killed the timeout connection, [%d] %s\n",
91 …printf("[014] Cannot KILL timeout connection, [%d] %s\n", mysqli_errno($link2), mysqli_error($link…
H A Dmysqli_no_reconnect.phpt66 printf("[009] Server should have killed the timeout connection, [%d] %s\n",
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c814 long timeout = 60; in pdo_sqlite_handle_factory() local
845 timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, timeout TSRMLS_CC); in pdo_sqlite_handle_factory()
847 sqlite3_busy_timeout(H->db, timeout * 1000); in pdo_sqlite_handle_factory()
/PHP-5.5/sapi/milter/
H A Dphp_milter.c597 long timeout; in PHP_FUNCTION() local
602 } else if (zend_parse_parameters(1 TSRMLS_CC, "l", &timeout) == SUCCESS) { in PHP_FUNCTION()
603 smfi_settimeout(timeout); in PHP_FUNCTION()
792 ZEND_ARG_INFO(0, timeout)
/PHP-5.5/ext/pcre/tests/
H A D005.phpt23 /p2/var/php_gcov/PHP_4_4/ext/sockets/sockets.c:1862: warning: unused variable `timeout'
25 /p2/var/php_gcov/PHP_4_4/ext/sockets/sockets.c:1941: warning: unused variable `timeout'
188 /p2/var/php_gcov/PHP_4_4/ext/sockets/sockets.c:1862: warning: unused variable `timeout'
197 [8] => unused variable `timeout'
203 /p2/var/php_gcov/PHP_4_4/ext/sockets/sockets.c:1941: warning: unused variable `timeout'
212 [8] => unused variable `timeout'
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt55 Sets the timeout value in seconds for communications with the database.
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt6 * Description: Set timeout on stream read to seconds + microseonds
/PHP-5.5/ext/sockets/
H A Dsockets.c1838 int timeout = 0; local
1907 if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&timeout, &optlen) != 0) {
1912 tv.tv_sec = timeout ? timeout / 1000 : 0;
1913 tv.tv_usec = timeout ? (timeout * 1000) % 1000000 : 0;
1947 int timeout; local
2042 timeout = Z_LVAL_PP(sec) * 1000 + Z_LVAL_PP(usec) / 1000;
2044 opt_ptr = &timeout;
/PHP-5.5/ext/mssql/
H A Dphp_mssql.h168 long connect_timeout, timeout; variable
H A Dphp_mssql.c253 …STD_PHP_INI_ENTRY_EX("mssql.timeout", "60", PHP_INI_ALL, OnUpdateLong, timeout, zend_m…
497 if (MS_SQL_G(timeout) < 0) MS_SQL_G(timeout) = 60; in PHP_RINIT_FUNCTION()
595 dbsettime(MS_SQL_G(timeout)); in php_mssql_do_connect()
1334 dbsettime(MS_SQL_G(timeout));
/PHP-5.5/ext/pcntl/
H A Dpcntl.c986 struct timespec timeout; in pcntl_sigwaitinfo() local
1021 timeout.tv_sec = (time_t) tv_sec; in pcntl_sigwaitinfo()
1022 timeout.tv_nsec = tv_nsec; in pcntl_sigwaitinfo()
1023 signo = sigtimedwait(&set, &siginfo, &timeout); in pcntl_sigwaitinfo()
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c2722 struct timeval timeout; in lsapi_prefork_server_accept() local
2783 timeout.tv_sec = 1; timeout.tv_usec = 0; in lsapi_prefork_server_accept()
2784 if ((ret = (*g_fnSelect)(pServer->m_fd+1, &readfds, NULL, NULL, &timeout)) == 1 ) in lsapi_prefork_server_accept()
2900 struct timeval timeout; in LSAPI_Prefork_Accept_r() local
2941 timeout.tv_sec = 1; in LSAPI_Prefork_Accept_r()
2942 timeout.tv_usec = 0; in LSAPI_Prefork_Accept_r()
2943 ret = (*g_fnSelect)(fd+1, &readfds, NULL, NULL, &timeout); in LSAPI_Prefork_Accept_r()

Completed in 141 milliseconds

1234