Home
last modified time | relevance | path

Searched refs:timeout (Results 76 – 100 of 105) sorted by relevance

12345

/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c485 int timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, 30); in pdo_dblib_handle_factory() local
488 connect_timeout = timeout; in pdo_dblib_handle_factory()
491 query_timeout = timeout; in pdo_dblib_handle_factory()
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c800 zend_long timeout = 60, flags; in pdo_sqlite_handle_factory() local
837 timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, timeout); in pdo_sqlite_handle_factory()
839 sqlite3_busy_timeout(H->db, timeout * 1000); in pdo_sqlite_handle_factory()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt56 Sets the timeout value in seconds for communications with the database.
/PHP-7.4/
H A D.travis.yml97 …g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --offline --show-diff --show-slow 1000 --set-timeout 120 -j$JOBS
H A DNEWS221 . Fixed bug #80728 (PHP built-in web server resets timeout when it can kill
569 timeout). (Kamil Tekiela, Nikita)
844 . Fixed bug #62890 (default_socket_timeout=-1 causes connection to timeout).
922 with <1s timeout). (Joe Cai)
1194 . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb)
1808 . Fixed bug #76342 (file_get_contents waits twice specified timeout).
H A Drun-tests.php1236 $timeout = $valgrind ? 300 : ($env['TEST_TIMEOUT'] ?? 60);
1244 $n = @stream_select($r, $w, $e, $timeout);
/PHP-7.4/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-7.4/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt17 $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries);
/PHP-7.4/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt6 * Description: Set timeout on stream read to seconds + microseonds
/PHP-7.4/ext/sockets/
H A Dsockets.c1987 int timeout = 0; local
2058 if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&timeout, &optlen) != 0) {
2063 tv.tv_sec = timeout ? timeout / 1000 : 0;
2064 tv.tv_usec = timeout ? (timeout * 1000) % 1000000 : 0;
2099 int timeout; local
2196 timeout = Z_LVAL_P(sec) * 1000 + Z_LVAL_P(usec) / 1000;
2198 opt_ptr = &timeout;
2555 stream_data->timeout.tv_sec = FG(default_socket_timeout);
2556 stream_data->timeout.tv_usec = 0;
/PHP-7.4/ext/standard/
H A Dstreamsfuncs.c95 double timeout = (double)FG(default_socket_timeout); in PHP_FUNCTION() local
112 Z_PARAM_DOUBLE(timeout) in PHP_FUNCTION()
124 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
247 double timeout = (double)FG(default_socket_timeout); in PHP_FUNCTION() local
259 Z_PARAM_DOUBLE(timeout) in PHP_FUNCTION()
266 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
H A Dbasic_functions.c1388 ZEND_ARG_INFO(0, timeout)
1396 ZEND_ARG_INFO(0, timeout)
1945 ZEND_ARG_INFO(0, timeout)
1960 ZEND_ARG_INFO(0, timeout)
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c3136 struct timeval timeout; in lsapi_prefork_server_accept() local
3199 timeout.tv_sec = 1; in lsapi_prefork_server_accept()
3200 timeout.tv_usec = 0; in lsapi_prefork_server_accept()
3201 ret = (*g_fnSelect)(pServer->m_fd+1, &readfds, NULL, NULL, &timeout); in lsapi_prefork_server_accept()
3404 struct timeval timeout; in LSAPI_Accept_Before_Fork() local
3472 timeout.tv_sec = 1; in LSAPI_Accept_Before_Fork()
3473 timeout.tv_usec = 0; in LSAPI_Accept_Before_Fork()
3549 struct timeval timeout; in LSAPI_Prefork_Accept_r() local
3603 timeout.tv_sec = 1; in LSAPI_Prefork_Accept_r()
3604 timeout.tv_usec = 0; in LSAPI_Prefork_Accept_r()
[all …]
/PHP-7.4/ext/pcntl/
H A Dpcntl.c1225 struct timespec timeout; in pcntl_sigwaitinfo() local
1253 timeout.tv_sec = (time_t) tv_sec; in pcntl_sigwaitinfo()
1254 timeout.tv_nsec = tv_nsec; in pcntl_sigwaitinfo()
1255 signo = sigtimedwait(&set, &siginfo, &timeout); in pcntl_sigwaitinfo()
/PHP-7.4/appveyor/
H A Dtest_task.bat103 nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 -g FAI…
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_no_reconnect.phpt66 printf("[009] Server should have killed the timeout connection, [%d] %s\n",
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in326 ; The timeout for serving a single request after which a PHP backtrace will be
336 ; The timeout for serving a single request after which the worker process will
343 ; The timeout set by 'request_terminate_timeout' ini option is not engaged after
346 ; This option will enable timeout limit to be applied unconditionally
/PHP-7.4/ext/standard/tests/file/
H A D007_error.phpt17 (including socket timeout); otherwise returns FALSE.
/PHP-7.4/sapi/apache2handler/
H A Dphp_functions.c426 apr_time_sec(serv->timeout), apr_time_sec(serv->keep_alive_timeout)); in PHP_MINFO_FUNCTION()
/PHP-7.4/ext/imap/
H A Dphp_imap.c464 ZEND_ARG_INFO(0, timeout)
4889 zend_long ttype, timeout=-1; in PHP_FUNCTION() local
4892 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &ttype, &timeout) == FAILURE) { in PHP_FUNCTION()
4896 if (timeout == -1) { in PHP_FUNCTION()
4915 timeout = (zend_long) mail_parameters(NIL, timeout_type, NIL); in PHP_FUNCTION()
4916 RETURN_LONG(timeout); in PHP_FUNCTION()
4917 } else if (timeout >= 0) { in PHP_FUNCTION()
4936 timeout = (zend_long) mail_parameters(NIL, timeout_type, (void *) timeout); in PHP_FUNCTION()
/PHP-7.4/ext/soap/
H A Dphp_http.c172 struct timeval *timeout = NULL; in http_connect() local
189 timeout = &tv; in http_connect()
235 timeout, in http_connect()
/PHP-7.4/docs/
H A Dstreams.md93 int socktype, int timeout, int persistent);
97 struct timeval *timeout);
/PHP-7.4/ext/ftp/
H A Dphp_ftp.c45 ZEND_ARG_INFO(0, timeout)
52 ZEND_ARG_INFO(0, timeout)
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc202 // do nothing so test hits timeout
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc748 if (stream_select($read, $write, $except, $timeout=3)) {

Completed in 110 milliseconds

12345