Lines Matching refs:tv
268 struct timeval tv; in php_cli_server_get_system_time() local
271 gettimeofday(&tv, NULL); in php_cli_server_get_system_time()
273 if (!php_localtime_r(&tv.tv_sec, &tm)) { in php_cli_server_get_system_time()
362 struct timeval tv = {0}; in append_essential_headers() local
385 if (append_date_header && !gettimeofday(&tv, NULL)) { in append_essential_headers()
386 zend_string *dt = php_format_date("D, d M Y H:i:s", sizeof("D, d M Y H:i:s") - 1, tv.tv_sec, 0); in append_essential_headers()
876 static int php_cli_server_poller_poll(php_cli_server_poller *poller, struct timeval *tv) /* {{{ */ in php_cli_server_poller_poll() argument
880 return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, tv); in php_cli_server_poller_poll()
1900 struct timeval tv = { 10, 0 }; in php_cli_server_client_send_through() local
1917 int nfds = php_pollfd_for(client->sock, POLLOUT, &tv); in php_cli_server_client_send_through()
2767 struct timeval tv = { 1, 0 }; in php_cli_server_do_event_loop() local
2768 int n = php_cli_server_poller_poll(&server->poller, &tv); in php_cli_server_do_event_loop()