Lines Matching refs:tv
261 struct timeval tv; in php_cli_server_get_system_time() local
264 gettimeofday(&tv, NULL); in php_cli_server_get_system_time()
267 php_localtime_r(&tv.tv_sec, &tm); in php_cli_server_get_system_time()
354 struct timeval tv = {0}; in append_essential_headers() local
362 if (!gettimeofday(&tv, NULL)) { in append_essential_headers()
363 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()
869 static int php_cli_server_poller_poll(php_cli_server_poller *poller, struct timeval *tv) /* {{{ */ in php_cli_server_poller_poll() argument
873 return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, tv); in php_cli_server_poller_poll()
1884 struct timeval tv = { 10, 0 }; in php_cli_server_client_send_through() local
1901 int nfds = php_pollfd_for(client->sock, POLLOUT, &tv); in php_cli_server_client_send_through()
2632 struct timeval tv = { 1, 0 }; in php_cli_server_do_event_loop() local
2633 int n = php_cli_server_poller_poll(&server->poller, &tv); in php_cli_server_do_event_loop()