timeout           374 ext/curl/interface.c 	ZEND_ARG_INFO(0, timeout)
timeout           159 ext/curl/multi.c static void _make_timeval_struct(struct timeval *to, double timeout) /* {{{ */
timeout           163 ext/curl/multi.c 	conv = (unsigned long) (timeout * 1000000.0);
timeout           179 ext/curl/multi.c 	double          timeout = 1.0;
timeout           182 ext/curl/multi.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|d", &z_mh, &timeout) == FAILURE) {
timeout           190 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          4772 ext/imap/php_imap.c 	zend_long ttype, timeout=-1;
timeout          4775 ext/imap/php_imap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &ttype, &timeout) == FAILURE) {
timeout          4779 ext/imap/php_imap.c 	if (timeout == -1) {
timeout          4798 ext/imap/php_imap.c 		timeout = (zend_long) mail_parameters(NIL, timeout_type, NIL);
timeout          4799 ext/imap/php_imap.c 		RETURN_LONG(timeout);
timeout          4800 ext/imap/php_imap.c 	} else if (timeout >= 0) {
timeout          4819 ext/imap/php_imap.c 		timeout = (zend_long) mail_parameters(NIL, timeout_type, (void *) timeout);
timeout          2111 ext/ldap/ldap.c 			struct timeval *timeout = NULL;
timeout          2113 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_OPT_NETWORK_TIMEOUT, (void *) &timeout)) {
timeout          2114 ext/ldap/ldap.c 				if (timeout) {
timeout          2115 ext/ldap/ldap.c 					ldap_memfree(timeout);
timeout          2119 ext/ldap/ldap.c 			if (!timeout) {
timeout          2123 ext/ldap/ldap.c 			ZVAL_LONG(retval, timeout->tv_sec);
timeout          2124 ext/ldap/ldap.c 			ldap_memfree(timeout);
timeout          2129 ext/ldap/ldap.c 			int timeout;
timeout          2131 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_X_OPT_CONNECT_TIMEOUT, &timeout)) {
timeout          2135 ext/ldap/ldap.c 			ZVAL_LONG(retval, (timeout / 1000));
timeout          2141 ext/ldap/ldap.c 			struct timeval *timeout = NULL;
timeout          2143 ext/ldap/ldap.c 			if (ldap_get_option(ld->link, LDAP_OPT_TIMEOUT, (void *) &timeout)) {
timeout          2144 ext/ldap/ldap.c 				if (timeout) {
timeout          2145 ext/ldap/ldap.c 					ldap_memfree(timeout);
timeout          2149 ext/ldap/ldap.c 			if (!timeout) {
timeout          2153 ext/ldap/ldap.c 			ZVAL_LONG(retval, timeout->tv_sec);
timeout          2154 ext/ldap/ldap.c 			ldap_memfree(timeout);
timeout          2244 ext/ldap/ldap.c 			struct timeval timeout;
timeout          2247 ext/ldap/ldap.c 			timeout.tv_sec = Z_LVAL_P(newval);
timeout          2248 ext/ldap/ldap.c 			timeout.tv_usec = 0;
timeout          2249 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_OPT_NETWORK_TIMEOUT, (void *) &timeout)) {
timeout          2256 ext/ldap/ldap.c 			int timeout;
timeout          2259 ext/ldap/ldap.c 			timeout = 1000 * Z_LVAL_P(newval); /* Convert to milliseconds */
timeout          2260 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_X_OPT_CONNECT_TIMEOUT, &timeout)) {
timeout          2268 ext/ldap/ldap.c 			struct timeval timeout;
timeout          2271 ext/ldap/ldap.c 			timeout.tv_sec = Z_LVAL_P(newval);
timeout          2272 ext/ldap/ldap.c 			timeout.tv_usec = 0;
timeout          2273 ext/ldap/ldap.c 			if (ldap_set_option(ldap, LDAP_OPT_TIMEOUT, (void *) &timeout)) {
timeout          1778 ext/openssl/xp_ssl.c 						*timeout;
timeout          1801 ext/openssl/xp_ssl.c 		timeout = sslsock->is_client ? &sslsock->connect_timeout : &sslsock->s.timeout;
timeout          1802 ext/openssl/xp_ssl.c 		has_timeout = !sslsock->s.is_blocked && (timeout->tv_sec || timeout->tv_usec);
timeout          1822 ext/openssl/xp_ssl.c 				if (compare_timeval( elapsed_time, *timeout) > 0) {
timeout          1838 ext/openssl/xp_ssl.c 						left_time = subtract_timeval( *timeout, elapsed_time );
timeout          1935 ext/openssl/xp_ssl.c 		struct timeval *timeout = NULL;
timeout          1946 ext/openssl/xp_ssl.c 		if (began_blocked && &sslsock->s.timeout) {
timeout          1947 ext/openssl/xp_ssl.c 			timeout = &sslsock->s.timeout;
timeout          1950 ext/openssl/xp_ssl.c 		if (timeout && php_set_sock_blocking(sslsock->s.socket, 0) == SUCCESS) {
timeout          1954 ext/openssl/xp_ssl.c 		if (!sslsock->s.is_blocked && timeout && (timeout->tv_sec || timeout->tv_usec)) {
timeout          1972 ext/openssl/xp_ssl.c 				if (compare_timeval(elapsed_time, *timeout) > 0 ) {
timeout          2000 ext/openssl/xp_ssl.c 				left_time = subtract_timeval( *timeout, elapsed_time );
timeout          2209 ext/openssl/xp_ssl.c 			xparam->inputs.timeout,
timeout          2327 ext/openssl/xp_ssl.c 					if (sslsock->s.timeout.tv_sec == -1) {
timeout          2543 ext/openssl/xp_ssl.c 		struct timeval *timeout,
timeout          2555 ext/openssl/xp_ssl.c 	sslsock->s.timeout.tv_sec = (long)FG(default_socket_timeout);
timeout          2557 ext/openssl/xp_ssl.c 	sslsock->s.timeout.tv_sec = (time_t)FG(default_socket_timeout);
timeout          2559 ext/openssl/xp_ssl.c 	sslsock->s.timeout.tv_usec = 0;
timeout          2562 ext/openssl/xp_ssl.c 	sslsock->connect_timeout.tv_sec = timeout->tv_sec;
timeout          2563 ext/openssl/xp_ssl.c 	sslsock->connect_timeout.tv_usec = timeout->tv_usec;
timeout          1085 ext/pcntl/pcntl.c 	struct timespec  timeout;
timeout          1113 ext/pcntl/pcntl.c 		timeout.tv_sec  = (time_t) tv_sec;
timeout          1114 ext/pcntl/pcntl.c 		timeout.tv_nsec = tv_nsec;
timeout          1115 ext/pcntl/pcntl.c 		signo = sigtimedwait(&set, &siginfo, &timeout);
timeout           350 ext/pdo_dblib/dblib_driver.c 		int timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, 30);
timeout           351 ext/pdo_dblib/dblib_driver.c 		dbsetlogintime(timeout); /* Connection/Login Timeout */
timeout           352 ext/pdo_dblib/dblib_driver.c 		dbsettime(timeout); /* Statement Timeout */
timeout           788 ext/pdo_sqlite/sqlite_driver.c 	zend_long timeout = 60;
timeout           819 ext/pdo_sqlite/sqlite_driver.c 		timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, timeout);
timeout           821 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          1115 ext/snmp/snmp.c static int netsnmp_session_init(php_snmp_session **session_p, int version, char *hostname, char *community, int timeout, int retries)
timeout          1231 ext/snmp/snmp.c 	session->timeout = timeout;
timeout          1420 ext/snmp/snmp.c 	zend_long timeout = SNMP_DEFAULT_TIMEOUT;
timeout          1438 ext/snmp/snmp.c 					&a4, &a4_len, &a5, &a5_len, &a6, &a6_len, &a7, &a7_len, &oid, &type, &value, &timeout, &retries) == FAILURE) {
timeout          1447 ext/snmp/snmp.c 					&a4, &a4_len, &a5, &a5_len, &a6, &a6_len, &a7, &a7_len, &oid, &timeout, &retries) == FAILURE) {
timeout          1453 ext/snmp/snmp.c 				if (zend_parse_parameters(argc, "sszzz|ll", &a1, &a1_len, &a2, &a2_len, &oid, &type, &value, &timeout, &retries) == FAILURE) {
timeout          1461 ext/snmp/snmp.c 				if (zend_parse_parameters(argc, "ssz|ll", &a1, &a1_len, &a2, &a2_len, &oid, &timeout, &retries) == FAILURE) {
timeout          1499 ext/snmp/snmp.c 		if (netsnmp_session_init(&session, version, a1, a2, timeout, retries)) {
timeout          1804 ext/snmp/snmp.c 	zend_long timeout = SNMP_DEFAULT_TIMEOUT;
timeout          1811 ext/snmp/snmp.c 	if (zend_parse_parameters_throw(argc, "lss|ll", &version, &a1, &a1_len, &a2, &a2_len, &timeout, &retries) == FAILURE) {
timeout          1830 ext/snmp/snmp.c 	if (netsnmp_session_init(&(snmp_object->session), version, a1, a2, timeout, retries)) {
timeout          2116 ext/snmp/snmp.c 	ZVAL_LONG(&val, snmp_object->session->timeout);
timeout           172 ext/soap/php_http.c 	struct timeval *timeout = NULL;
timeout           189 ext/soap/php_http.c 		timeout = &tv;
timeout           235 ext/soap/php_http.c 		timeout,
timeout          1881 ext/sockets/sockets.c 	int				timeout = 0;
timeout          1952 ext/sockets/sockets.c 			if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&timeout, &optlen) != 0) {
timeout          1957 ext/sockets/sockets.c 			tv.tv_sec = timeout ? timeout / 1000 : 0;
timeout          1958 ext/sockets/sockets.c 			tv.tv_usec = timeout ? (timeout * 1000) % 1000000 : 0;
timeout          1992 ext/sockets/sockets.c 	int						timeout;
timeout          2089 ext/sockets/sockets.c 			timeout = Z_LVAL_P(sec) * 1000 + Z_LVAL_P(usec) / 1000;
timeout          2091 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          1390 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1398 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1950 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout          1965 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, timeout)
timeout            38 ext/standard/fsock.c 	double timeout = (double)FG(default_socket_timeout);
timeout            54 ext/standard/fsock.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|lz/z/d", &host, &host_len, &port, &zerrno, &zerrstr, &timeout) == FAILURE) {
timeout            71 ext/standard/fsock.c 	conv = (time_t) (timeout * 1000000.0);
timeout            74 ext/standard/fsock.c 	conv = (long) (timeout * 1000000.0);
timeout           140 ext/standard/http_fopen_wrapper.c 	struct timeval timeout;
timeout           208 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (time_t) d;
timeout           209 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = (size_t) ((d - timeout.tv_sec) * 1000000);
timeout           211 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (long) d;
timeout           212 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = (long) ((d - timeout.tv_sec) * 1000000);
timeout           216 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = FG(default_socket_timeout);
timeout           218 ext/standard/http_fopen_wrapper.c 		timeout.tv_sec = (long)FG(default_socket_timeout);
timeout           220 ext/standard/http_fopen_wrapper.c 		timeout.tv_usec = 0;
timeout           225 ext/standard/http_fopen_wrapper.c 			NULL, &timeout, context, &errstr, NULL);
timeout           228 ext/standard/http_fopen_wrapper.c 		php_stream_set_option(stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &timeout);
timeout            92 ext/standard/streamsfuncs.c 	double timeout = (double)FG(default_socket_timeout);
timeout           104 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|z/z/dlr", &host, &zerrno, &zerrstr, &timeout, &flags, &zcontext) == FAILURE) {
timeout           115 ext/standard/streamsfuncs.c 	conv = (php_timeout_ull) (timeout * 1000000.0);
timeout           241 ext/standard/streamsfuncs.c 	double timeout = (double)FG(default_socket_timeout);
timeout           251 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|dz/", &zstream, &timeout, &zpeername) == FAILURE) {
timeout           258 ext/standard/streamsfuncs.c 		Z_PARAM_DOUBLE(timeout)
timeout           266 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           728 main/network.c 		struct timeval *timeout,
timeout           738 main/network.c 	n = php_pollfd_for(srvsock, PHP_POLLREADABLE, timeout);
timeout           780 main/network.c 		int socktype, int asynchronous, struct timeval *timeout, zend_string **error_string,
timeout           800 main/network.c 	if (timeout) {
timeout           801 main/network.c 		memcpy(&working_timeout, timeout, sizeof(working_timeout));
timeout           907 main/network.c 					timeout ? &working_timeout : NULL,
timeout           916 main/network.c 			if (timeout) {
timeout           936 main/network.c 				if (timeout) {
timeout           937 main/network.c 					memcpy(&working_timeout, timeout, sizeof(working_timeout));
timeout          1105 main/network.c 	sock->timeout.tv_sec = FG(default_socket_timeout);
timeout          1106 main/network.c 	sock->timeout.tv_usec = 0;
timeout          1121 main/network.c 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC)
timeout          1130 main/network.c 			STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, persistent_id, timeout, NULL, NULL, NULL);
timeout          1198 main/network.c PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout)
timeout          1230 main/network.c 	if (timeout >= 0) {
timeout          1231 main/network.c 		tv.tv_sec = timeout / 1000;
timeout          1232 main/network.c 		tv.tv_usec = (timeout - (tv.tv_sec * 1000)) * 1000;
timeout          1240 main/network.c 	n = select(max_fd + 1, &rset, &wset, &eset, timeout >= 0 ? &tv : NULL);
timeout           129 main/php_network.h PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout);
timeout           148 main/php_network.h # define php_poll2(ufds, nfds, timeout)		poll(ufds, nfds, timeout)
timeout           182 main/php_network.h static inline int php_pollfd_for_ms(php_socket_t fd, int events, int timeout)
timeout           191 main/php_network.h 	n = php_poll2(&p, 1, timeout);
timeout           239 main/php_network.h 		int socktype, int asynchronous, struct timeval *timeout, zend_string **error_string,
timeout           247 main/php_network.h 		struct timeval *timeout,
timeout           251 main/php_network.h #define php_connect_nonb(sock, addr, addrlen, timeout) \
timeout           252 main/php_network.h 	php_network_connect_socket((sock), (addr), (addrlen), 0, (timeout), NULL, NULL)
timeout           262 main/php_network.h 		struct timeval *timeout,
timeout           286 main/php_network.h 	struct timeval timeout;
timeout           299 main/php_network.h 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC);
timeout           315 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)
timeout           319 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)
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)
timeout            70 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout            86 main/streams/php_stream_transport.h 		struct timeval *timeout,
timeout           145 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)) {
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            71 main/streams/xp_socket.c 	if (sock->timeout.tv_sec == -1)
timeout            74 main/streams/xp_socket.c 		ptimeout = &sock->timeout;
timeout           132 main/streams/xp_socket.c 	if (sock->timeout.tv_sec == -1)
timeout           135 main/streams/xp_socket.c 		ptimeout = &sock->timeout;
timeout           167 main/streams/xp_socket.c 	nr_bytes = recv(sock->socket, buf, XP_SOCK_BUF_SIZE(count), (sock->is_blocked && sock->timeout.tv_sec != -1) ? MSG_DONTWAIT : 0);
timeout           305 main/streams/xp_socket.c 					if (sock->timeout.tv_sec == -1) {
timeout           309 main/streams/xp_socket.c 						tv = sock->timeout;
timeout           345 main/streams/xp_socket.c 			sock->timeout = *(struct timeval*)ptrparam;
timeout           708 main/streams/xp_socket.c 				xparam->op == STREAM_XPORT_OP_CONNECT_ASYNC, xparam->inputs.timeout,
timeout           752 main/streams/xp_socket.c 			xparam->inputs.timeout,
timeout           793 main/streams/xp_socket.c 			xparam->inputs.timeout,
timeout           858 main/streams/xp_socket.c 		struct timeval *timeout,
timeout           887 main/streams/xp_socket.c 	sock->timeout.tv_sec = FG(default_socket_timeout);
timeout           888 main/streams/xp_socket.c 	sock->timeout.tv_usec = 0;
timeout           428 sapi/apache2handler/php_functions.c 				 apr_time_sec(serv->timeout), apr_time_sec(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);