timeout           373 ext/curl/interface.c 	ZEND_ARG_INFO(0, timeout)
timeout           153 ext/curl/multi.c static void _make_timeval_struct(struct timeval *to, double timeout) /* {{{ */
timeout           157 ext/curl/multi.c 	conv = (unsigned long) (timeout * 1000000.0);
timeout           173 ext/curl/multi.c 	double          timeout = 1.0;
timeout           176 ext/curl/multi.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|d", &z_mh, &timeout) == FAILURE) {
timeout           182 ext/curl/multi.c 	_make_timeval_struct(&to, timeout);
timeout            51 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, timeout)
timeout            58 ext/ftp/php_ftp.c 	ZEND_ARG_INFO(0, timeout)
timeout           465 ext/imap/php_imap.c 	ZEND_ARG_INFO(0, timeout)
timeout          4748 ext/imap/php_imap.c 	long ttype, timeout=-1;
timeout          4751 ext/imap/php_imap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &ttype, &timeout) == FAILURE) {
timeout          4755 ext/imap/php_imap.c 	if (timeout == -1) {
timeout          4774 ext/imap/php_imap.c 		timeout = (long) mail_parameters(NIL, timeout_type, NIL);
timeout          4775 ext/imap/php_imap.c 		RETURN_LONG(timeout);
timeout          4776 ext/imap/php_imap.c 	} else if (timeout >= 0) {
timeout          4795 ext/imap/php_imap.c 		timeout = (long) mail_parameters(NIL, timeout_type, (void *) timeout);
timeout          2054 ext/ldap/ldap.c 			struct timeval *timeout = NULL;
timeout          2056 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_OPT_NETWORK_TIMEOUT, (void *) &timeout)) {
timeout          2057 ext/ldap/ldap.c 				if (timeout) {
timeout          2058 ext/ldap/ldap.c 					ldap_memfree(timeout);
timeout          2062 ext/ldap/ldap.c 			if (!timeout) {
timeout          2066 ext/ldap/ldap.c 			ZVAL_LONG(retval, timeout->tv_sec);
timeout          2067 ext/ldap/ldap.c 			ldap_memfree(timeout);
timeout          2072 ext/ldap/ldap.c 			int timeout;
timeout          2074 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_X_OPT_CONNECT_TIMEOUT, &timeout)) {
timeout          2078 ext/ldap/ldap.c 			ZVAL_LONG(retval, (timeout / 1000));
timeout          2084 ext/ldap/ldap.c 			struct timeval *timeout = NULL;
timeout          2086 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_OPT_TIMEOUT, (void *) &timeout)) {
timeout          2087 ext/ldap/ldap.c 				if (timeout) {
timeout          2088 ext/ldap/ldap.c 					ldap_memfree(timeout);
timeout          2092 ext/ldap/ldap.c 			if (!timeout) {
timeout          2096 ext/ldap/ldap.c 			ZVAL_LONG(retval, timeout->tv_sec);
timeout          2097 ext/ldap/ldap.c 			ldap_memfree(timeout);
timeout          2182 ext/ldap/ldap.c 			struct timeval timeout;
timeout          2185 ext/ldap/ldap.c 			timeout.tv_sec = Z_LVAL_PP(newval);
timeout          2186 ext/ldap/ldap.c 			timeout.tv_usec = 0;
timeout          2187 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_OPT_NETWORK_TIMEOUT, (void *) &timeout)) {
timeout          2194 ext/ldap/ldap.c 			int timeout;
timeout          2197 ext/ldap/ldap.c 			timeout = 1000 * Z_LVAL_PP(newval); /* Convert to milliseconds */
timeout          2198 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_X_OPT_CONNECT_TIMEOUT, &timeout)) {
timeout          2206 ext/ldap/ldap.c 			struct timeval timeout;
timeout          2209 ext/ldap/ldap.c 			timeout.tv_sec = Z_LVAL_PP(newval);
timeout          2210 ext/ldap/ldap.c 			timeout.tv_usec = 0;
timeout          2211 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_OPT_TIMEOUT, (void *) &timeout)) {
timeout           253 ext/mssql/php_mssql.c 	STD_PHP_INI_ENTRY_EX("mssql.timeout",      			"60",	PHP_INI_ALL,	OnUpdateLong,	timeout,					zend_mssql_globals,		mssql_globals,	display_link_numbers)
timeout           497 ext/mssql/php_mssql.c 	if (MS_SQL_G(timeout) < 0) MS_SQL_G(timeout) = 60;
timeout           595 ext/mssql/php_mssql.c 	dbsettime(MS_SQL_G(timeout));
timeout          1334 ext/mssql/php_mssql.c 	dbsettime(MS_SQL_G(timeout));
timeout           168 ext/mssql/php_mssql.h 	long connect_timeout, timeout;
timeout           364 ext/mysql/php_mysql.c void timeout(int sig);
timeout          1681 ext/openssl/xp_ssl.c 						*timeout;
timeout          1704 ext/openssl/xp_ssl.c 		timeout = sslsock->is_client ? &sslsock->connect_timeout : &sslsock->s.timeout;
timeout          1705 ext/openssl/xp_ssl.c 		has_timeout = !sslsock->s.is_blocked && (timeout->tv_sec || timeout->tv_usec);
timeout          1725 ext/openssl/xp_ssl.c 				if (compare_timeval( elapsed_time, *timeout) > 0) {
timeout          1741 ext/openssl/xp_ssl.c 						left_time = subtract_timeval( *timeout, elapsed_time );
timeout          1834 ext/openssl/xp_ssl.c 		struct timeval *timeout = NULL;
timeout          1839 ext/openssl/xp_ssl.c 		if (began_blocked && &sslsock->s.timeout) {
timeout          1840 ext/openssl/xp_ssl.c 			timeout = &sslsock->s.timeout;
timeout          1843 ext/openssl/xp_ssl.c 		if (timeout && php_set_sock_blocking(sslsock->s.socket, 0 TSRMLS_CC) == SUCCESS) {
timeout          1847 ext/openssl/xp_ssl.c 		if (!sslsock->s.is_blocked && timeout && (timeout->tv_sec || timeout->tv_usec)) {
timeout          1865 ext/openssl/xp_ssl.c 				if (compare_timeval(elapsed_time, *timeout) > 0 ) {
timeout          1893 ext/openssl/xp_ssl.c 				left_time = subtract_timeval( *timeout, elapsed_time );
timeout          2102 ext/openssl/xp_ssl.c 			xparam->inputs.timeout,
timeout          2168 ext/openssl/xp_ssl.c 					if (sslsock->s.timeout.tv_sec == -1) {
timeout          2380 ext/openssl/xp_ssl.c 		struct timeval *timeout,
timeout          2391 ext/openssl/xp_ssl.c 	sslsock->s.timeout.tv_sec = FG(default_socket_timeout);
timeout          2392 ext/openssl/xp_ssl.c 	sslsock->s.timeout.tv_usec = 0;
timeout          2395 ext/openssl/xp_ssl.c 	sslsock->connect_timeout.tv_sec = timeout->tv_sec;
timeout          2396 ext/openssl/xp_ssl.c 	sslsock->connect_timeout.tv_usec = timeout->tv_usec;
timeout           986 ext/pcntl/pcntl.c 	struct timespec  timeout;
timeout          1021 ext/pcntl/pcntl.c 		timeout.tv_sec  = (time_t) tv_sec;
timeout          1022 ext/pcntl/pcntl.c 		timeout.tv_nsec = tv_nsec;
timeout          1023 ext/pcntl/pcntl.c 		signo = sigtimedwait(&set, &siginfo, &timeout);
timeout           814 ext/pdo_sqlite/sqlite_driver.c 	long timeout = 60;
timeout           845 ext/pdo_sqlite/sqlite_driver.c 		timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, timeout TSRMLS_CC);
timeout           847 ext/pdo_sqlite/sqlite_driver.c 	sqlite3_busy_timeout(H->db, timeout * 1000);
timeout           152 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           160 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           168 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           176 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           186 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           211 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           219 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           227 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           235 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           245 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           258 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           271 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           284 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           297 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           312 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout           333 ext/snmp/snmp.c 	ZEND_ARG_INFO(0, timeout)
timeout          1125 ext/snmp/snmp.c static int netsnmp_session_init(php_snmp_session **session_p, int version, char *hostname, char *community, int timeout, int retries TSRMLS_DC)
timeout          1241 ext/snmp/snmp.c 	session->timeout = timeout;
timeout          1430 ext/snmp/snmp.c 	long timeout = SNMP_DEFAULT_TIMEOUT;
timeout          1448 ext/snmp/snmp.c 					&a4, &a4_len, &a5, &a5_len, &a6, &a6_len, &a7, &a7_len, &oid, &type, &value, &timeout, &retries) == FAILURE) {
timeout          1457 ext/snmp/snmp.c 					&a4, &a4_len, &a5, &a5_len, &a6, &a6_len, &a7, &a7_len, &oid, &timeout, &retries) == FAILURE) {
timeout          1463 ext/snmp/snmp.c 				if (zend_parse_parameters(argc TSRMLS_CC, "ssZZZ|ll", &a1, &a1_len, &a2, &a2_len, &oid, &type, &value, &timeout, &retries) == FAILURE) {
timeout          1471 ext/snmp/snmp.c 				if (zend_parse_parameters(argc TSRMLS_CC, "ssZ|ll", &a1, &a1_len, &a2, &a2_len, &oid, &timeout, &retries) == FAILURE) {
timeout          1509 ext/snmp/snmp.c 		if (netsnmp_session_init(&session, version, a1, a2, timeout, retries TSRMLS_CC)) {
timeout          1814 ext/snmp/snmp.c 	long timeout = SNMP_DEFAULT_TIMEOUT;
timeout          1823 ext/snmp/snmp.c 	if (zend_parse_parameters(argc TSRMLS_CC, "lss|ll", &version, &a1, &a1_len, &a2, &a2_len, &timeout, &retries) == FAILURE) {
timeout          1845 ext/snmp/snmp.c 	if (netsnmp_session_init(&(snmp_object->session), version, a1, a2, timeout, retries TSRMLS_CC)) {
timeout          2148 ext/snmp/snmp.c 	ZVAL_LONG(val, snmp_object->session->timeout);
timeout           174 ext/soap/php_http.c 	struct timeval *timeout = NULL;
timeout           191 ext/soap/php_http.c 		timeout = &tv;
timeout           237 ext/soap/php_http.c 		timeout,
timeout          1838 ext/sockets/sockets.c 	int				timeout = 0;
timeout          1907 ext/sockets/sockets.c 			if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&timeout, &optlen) != 0) {
timeout          1912 ext/sockets/sockets.c 			tv.tv_sec = timeout ? timeout / 1000 : 0;
timeout          1913 ext/sockets/sockets.c 			tv.tv_usec = timeout ? (timeout * 1000) % 1000000 : 0;
timeout          1947 ext/sockets/sockets.c 	int						timeout;
timeout          2042 ext/sockets/sockets.c 			timeout = Z_LVAL_PP(sec) * 1000 + Z_LVAL_PP(usec) / 1000;
timeout          2044 ext/sockets/sockets.c 			opt_ptr = &timeout;
timeout          32073 ext/sqlite3/libsqlite/sqlite3.c     struct timespec timeout = {1, 0}; /* 1 sec timeout */
timeout          32074 ext/sqlite3/libsqlite/sqlite3.c     if( gethostuuid(pHostID, &timeout) ){
timeout          129373 ext/sqlite3/libsqlite/sqlite3.c   int timeout = db->busyTimeout;
timeout          129384 ext/sqlite3/libsqlite/sqlite3.c   if( prior + delay > timeout ){
timeout          129385 ext/sqlite3/libsqlite/sqlite3.c     delay = timeout - prior;
timeout          129392 ext/sqlite3/libsqlite/sqlite3.c   int timeout = ((sqlite3 *)ptr)->busyTimeout;
timeout          129393 ext/sqlite3/libsqlite/sqlite3.c   if( (count+1)*1000 > timeout ){
timeout          1402 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1410 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1945 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1960 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout            38 ext/standard/fsock.c 	double timeout = FG(default_socket_timeout);
timeout            50 ext/standard/fsock.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lzzd", &host, &host_len, &port, &zerrno, &zerrstr, &timeout) == FAILURE) {
timeout            66 ext/standard/fsock.c 	conv = (unsigned long) (timeout * 1000000.0);
timeout           137 ext/standard/http_fopen_wrapper.c 	struct timeval timeout;
timeout           203 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (time_t) Z_DVAL_PP(tmpzval);
timeout           204 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = (size_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000);
timeout           206 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = FG(default_socket_timeout);
timeout           207 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = 0;
timeout           212 ext/standard/http_fopen_wrapper.c 			NULL, &timeout, context, &errstr, NULL);
timeout           215 ext/standard/http_fopen_wrapper.c 		php_stream_set_option(stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &timeout);
timeout            93 ext/standard/streamsfuncs.c 	double timeout = FG(default_socket_timeout);
timeout           105 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|zzdlr", &host, &host_len, &zerrno, &zerrstr, &timeout, &flags, &zcontext) == FAILURE) {
timeout           116 ext/standard/streamsfuncs.c 	conv = (php_timeout_ull) (timeout * 1000000.0);
timeout           244 ext/standard/streamsfuncs.c 	double timeout = FG(default_socket_timeout);
timeout           255 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|dz", &zstream, &timeout, &zpeername) == FAILURE) {
timeout           262 ext/standard/streamsfuncs.c 	conv = (php_timeout_ull) (timeout * 1000000.0);
timeout           312 main/network.c 		struct timeval *timeout,
timeout           356 main/network.c 	if ((n = php_pollfd_for(sockfd, POLLOUT|POLLPRI, timeout)) == 0) {
timeout           358 main/network.c 	if ((n = php_pollfd_for(sockfd, PHP_POLLREADABLE|POLLOUT, timeout)) == 0) {
timeout           717 main/network.c 		struct timeval *timeout,
timeout           727 main/network.c 	n = php_pollfd_for(srvsock, PHP_POLLREADABLE, timeout);
timeout           769 main/network.c 		int socktype, int asynchronous, struct timeval *timeout, char **error_string,
timeout           789 main/network.c 	if (timeout) {
timeout           790 main/network.c 		memcpy(&working_timeout, timeout, sizeof(working_timeout));
timeout           887 main/network.c 					timeout ? &working_timeout : NULL,
timeout           896 main/network.c 			if (timeout) {
timeout           916 main/network.c 				if (timeout) {
timeout           917 main/network.c 					memcpy(&working_timeout, timeout, sizeof(working_timeout));
timeout          1047 main/network.c 	sock->timeout.tv_sec = FG(default_socket_timeout);
timeout          1048 main/network.c 	sock->timeout.tv_usec = 0;
timeout          1063 main/network.c 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC TSRMLS_DC)
timeout          1072 main/network.c 			STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, persistent_id, timeout, NULL, NULL, NULL);
timeout          1139 main/network.c PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout)
timeout          1171 main/network.c 	if (timeout >= 0) {
timeout          1172 main/network.c 		tv.tv_sec = timeout / 1000;
timeout          1173 main/network.c 		tv.tv_usec = (timeout - (tv.tv_sec * 1000)) * 1000;
timeout          1181 main/network.c 	n = select(max_fd + 1, &rset, &wset, &eset, timeout >= 0 ? &tv : NULL);
timeout           121 main/php_network.h PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout);
timeout           140 main/php_network.h # define php_poll2(ufds, nfds, timeout)		poll(ufds, nfds, timeout)
timeout           174 main/php_network.h static inline int php_pollfd_for_ms(php_socket_t fd, int events, int timeout)
timeout           183 main/php_network.h 	n = php_poll2(&p, 1, timeout);
timeout           231 main/php_network.h 		int socktype, int asynchronous, struct timeval *timeout, char **error_string,
timeout           239 main/php_network.h 		struct timeval *timeout,
timeout           243 main/php_network.h #define php_connect_nonb(sock, addr, addrlen, timeout) \
timeout           244 main/php_network.h 	php_network_connect_socket((sock), (addr), (addrlen), 0, (timeout), NULL, NULL)
timeout           254 main/php_network.h 		struct timeval *timeout,
timeout           278 main/php_network.h 	struct timeval timeout;
timeout           291 main/php_network.h 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC TSRMLS_DC);
timeout           307 main/php_network.h #define php_stream_sock_open_host(host, port, socktype, timeout, persistent)	_php_stream_sock_open_host((host), (port), (socktype), (timeout), (persistent) STREAMS_CC TSRMLS_CC)
timeout           311 main/php_network.h #define php_stream_sock_open_host_rel(host, port, socktype, timeout, persistent)	_php_stream_sock_open_host((host), (port), (socktype), (timeout), (persistent) STREAMS_REL_CC TSRMLS_CC)
timeout            32 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout            51 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout            57 main/streams/php_stream_transport.h #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, ecode) \
timeout            58 main/streams/php_stream_transport.h 	_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, ecode STREAMS_CC TSRMLS_CC)
timeout            70 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout            86 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout           146 main/streams/php_stream_transport.h 		struct timeval *timeout;
timeout            54 main/streams/transports.c 		struct timeval *timeout,
timeout            69 main/streams/transports.c 	if (timeout == NULL) {
timeout            70 main/streams/transports.c 		timeout = &default_timeout;
timeout           133 main/streams/transports.c 			(char*)name, namelen, persistent_id, options, flags, timeout,
timeout           145 main/streams/transports.c 							timeout, &error_text, error_code TSRMLS_CC)) {
timeout           227 main/streams/transports.c 		struct timeval *timeout,
timeout           239 main/streams/transports.c 	param.inputs.timeout = timeout;
timeout           287 main/streams/transports.c 		struct timeval *timeout,
timeout           297 main/streams/transports.c 	param.inputs.timeout = timeout;
timeout            64 main/streams/xp_socket.c 	if (sock->timeout.tv_sec == -1)
timeout            67 main/streams/xp_socket.c 		ptimeout = &sock->timeout;
timeout           125 main/streams/xp_socket.c 	if (sock->timeout.tv_sec == -1)
timeout           128 main/streams/xp_socket.c 		ptimeout = &sock->timeout;
timeout           159 main/streams/xp_socket.c 	nr_bytes = recv(sock->socket, buf, count, (sock->is_blocked && sock->timeout.tv_sec != -1) ? MSG_DONTWAIT : 0);
timeout           282 main/streams/xp_socket.c 					if (sock->timeout.tv_sec == -1) {
timeout           286 main/streams/xp_socket.c 						tv = sock->timeout;
timeout           322 main/streams/xp_socket.c 			sock->timeout = *(struct timeval*)ptrparam;
timeout           651 main/streams/xp_socket.c 				xparam->op == STREAM_XPORT_OP_CONNECT_ASYNC, xparam->inputs.timeout,
timeout           685 main/streams/xp_socket.c 			xparam->inputs.timeout,
timeout           726 main/streams/xp_socket.c 			xparam->inputs.timeout,
timeout           791 main/streams/xp_socket.c 		struct timeval *timeout,
timeout           820 main/streams/xp_socket.c 	sock->timeout.tv_sec = FG(default_socket_timeout);
timeout           821 main/streams/xp_socket.c 	sock->timeout.tv_usec = 0;
timeout           215 sapi/apache/php_apache.c 	snprintf(output_buf, sizeof(output_buf), "Connection: %d - Keep-Alive: %d", serv->timeout, serv->keep_alive_timeout);
timeout           424 sapi/apache2handler/php_functions.c 				 apr_time_sec(serv->timeout), apr_time_sec(serv->keep_alive_timeout));
timeout          1626 sapi/apache_hooks/php_apache.c 	snprintf(output_buf, sizeof(output_buf), "Connection: %d - Keep-Alive: %d", serv->timeout, serv->keep_alive_timeout);
timeout            37 sapi/fpm/fpm/events/devpoll.c static int fpm_event_devpoll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout           148 sapi/fpm/fpm/events/devpoll.c static int fpm_event_devpoll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout           157 sapi/fpm/fpm/events/devpoll.c 	dopoll.dp_timeout = (int)timeout;
timeout            33 sapi/fpm/fpm/events/epoll.c static int fpm_event_epoll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout           120 sapi/fpm/fpm/events/epoll.c static int fpm_event_epoll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout           128 sapi/fpm/fpm/events/epoll.c 	ret = epoll_wait(epollfd, epollfds, nepollfds, timeout);
timeout            36 sapi/fpm/fpm/events/kqueue.c static int fpm_event_kqueue_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout           119 sapi/fpm/fpm/events/kqueue.c static int fpm_event_kqueue_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout           128 sapi/fpm/fpm/events/kqueue.c 	t.tv_sec = timeout / 1000;
timeout           129 sapi/fpm/fpm/events/kqueue.c 	t.tv_nsec = (timeout % 1000) * 1000 * 1000;
timeout            34 sapi/fpm/fpm/events/poll.c static int fpm_event_poll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout           133 sapi/fpm/fpm/events/poll.c static int fpm_event_poll_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout           144 sapi/fpm/fpm/events/poll.c 	ret = poll(active_pollfds, npollfds, timeout);
timeout            34 sapi/fpm/fpm/events/port.c static int fpm_event_port_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout           117 sapi/fpm/fpm/events/port.c static int fpm_event_port_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout           123 sapi/fpm/fpm/events/port.c 	t.tv_sec = (int)(timeout / 1000);
timeout           124 sapi/fpm/fpm/events/port.c 	t.tv_nsec = (timeout % 1000) * 1000 * 1000;
timeout            39 sapi/fpm/fpm/events/select.c static int fpm_event_select_wait(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout            86 sapi/fpm/fpm/events/select.c static int fpm_event_select_wait(struct fpm_event_queue_s *queue, unsigned long int timeout) /* {{{ */
timeout            97 sapi/fpm/fpm/events/select.c 	t.tv_sec = timeout / 1000;
timeout            98 sapi/fpm/fpm/events/select.c 	t.tv_usec = (timeout % 1000) * 1000;
timeout            36 sapi/fpm/fpm/fpm_events.c #define fpm_event_set_timeout(ev, now) timeradd(&(now), &(ev)->frequency, &(ev)->timeout);
timeout           379 sapi/fpm/fpm/fpm_events.c 		unsigned long int timeout;
timeout           394 sapi/fpm/fpm/fpm_events.c 				ms = q->ev->timeout;
timeout           396 sapi/fpm/fpm/fpm_events.c 				if (timercmp(&q->ev->timeout, &ms, <)) {
timeout           397 sapi/fpm/fpm/fpm_events.c 					ms = q->ev->timeout;
timeout           405 sapi/fpm/fpm/fpm_events.c 			timeout = 1000;
timeout           408 sapi/fpm/fpm/fpm_events.c 			timeout = (tmp.tv_sec * 1000) + (tmp.tv_usec / 1000) + 1;
timeout           411 sapi/fpm/fpm/fpm_events.c 		ret = module->wait(fpm_event_queue_fd, timeout);
timeout           427 sapi/fpm/fpm/fpm_events.c 				if (timercmp(&now, &q->ev->timeout, >) || timercmp(&now, &q->ev->timeout, ==)) {
timeout            17 sapi/fpm/fpm/fpm_events.h 	struct timeval timeout;   /* next time to trigger */
timeout            37 sapi/fpm/fpm/fpm_events.h 	int (*wait)(struct fpm_event_queue_s *queue, unsigned long int timeout);
timeout            46 sapi/fpm/fpm/fpm_events.h int fpm_event_add(struct fpm_event_s *ev, unsigned long int timeout);
timeout           175 sapi/fpm/fpm/fpm_process_ctl.c 	int sig, timeout;
timeout           187 sapi/fpm/fpm/fpm_process_ctl.c 		timeout = fpm_global_config.process_control_timeout;
timeout           194 sapi/fpm/fpm/fpm_process_ctl.c 		timeout = 1;
timeout           199 sapi/fpm/fpm/fpm_process_ctl.c 	fpm_pctl_timeout_set(timeout);
timeout          2777 sapi/litespeed/lsapilib.c     struct timeval  timeout;
timeout          2838 sapi/litespeed/lsapilib.c         timeout.tv_sec = 1; timeout.tv_usec = 0;
timeout          2839 sapi/litespeed/lsapilib.c         if ((ret = (*g_fnSelect)(pServer->m_fd+1, &readfds, NULL, NULL, &timeout)) == 1 )
timeout          2955 sapi/litespeed/lsapilib.c     struct timeval  timeout;
timeout          2996 sapi/litespeed/lsapilib.c             timeout.tv_sec = 1;
timeout          2997 sapi/litespeed/lsapilib.c             timeout.tv_usec = 0;
timeout          2998 sapi/litespeed/lsapilib.c             ret = (*g_fnSelect)(fd+1, &readfds, NULL, NULL, &timeout);
timeout           597 sapi/milter/php_milter.c 	long timeout;
timeout           602 sapi/milter/php_milter.c 	} else if (zend_parse_parameters(1 TSRMLS_CC, "l", &timeout) == SUCCESS) {
timeout           603 sapi/milter/php_milter.c 		smfi_settimeout(timeout);
timeout           792 sapi/milter/php_milter.c 	ZEND_ARG_INFO(0, timeout)
timeout           150 win32/time.c   	int timeout = value->it_value.tv_sec * 1000 + value->it_value.tv_usec;
timeout           155 win32/time.c   	if (timeout > 0) {
timeout           164 win32/time.c   				realtimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat);
timeout           168 win32/time.c   				virttimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat);
timeout           172 win32/time.c   				proftimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repeat);