Lines Matching refs:timeval

650 -httpd_close_conn( httpd_conn* hc, struct timeval* nowP )
653 +httpd_complete_request( httpd_conn* hc, struct timeval* nowP)
670 +httpd_close_conn( httpd_conn* hc, struct timeval* nowP )
813 make_log_entry( httpd_conn* hc, struct timeval* nowP )
863 - if ( nowP != (struct timeval*) 0 )
1028 ** If you don't have a current timeval handy just pass in 0.
1030 extern void httpd_close_conn( httpd_conn* hc, struct timeval* nowP );
1031 +void httpd_complete_request( httpd_conn* hc, struct timeval* nowP);
1316 -mmc_map( char* filename, struct stat* sbP, struct timeval* nowP )
1317 +mmc_map( char* filename, struct stat* sbP, struct timeval* nowP, int nocache, char **last_modified…
1367 mmc_unmap( void* addr, struct stat* sbP, struct timeval* nowP )
1399 if ( nowP != (struct timeval*) 0 )
1411 -extern void* mmc_map( char* filename, struct stat* sbP, struct timeval* nowP );
1412 +extern void* mmc_map( char* filename, struct stat* sbP, struct timeval* nowP, int nocache, char **…
1483 static int handle_newconnect( struct timeval* tvP, int listen_fd );
1484 static void handle_read( connecttab* c, struct timeval* tvP );
1485 static void handle_send( connecttab* c, struct timeval* tvP );
1486 +static void handle_send_resp( connecttab* c, struct timeval* tvP );
1487 +static void handle_read_body( connecttab* c, struct timeval* tvP );
1488 static void handle_linger( connecttab* c, struct timeval* tvP );
1490 +static void timeout_conns( ClientData client_data, struct timeval* nowP );
1491 static void clear_throttles( connecttab* c, struct timeval* tvP );
1492 static void update_throttles( ClientData client_data, struct timeval* nowP );
1493 -static void clear_connection( connecttab* c, struct timeval* tvP );
1494 +static void clear_connection( connecttab* c, struct timeval* tvP, int );
1495 static void really_clear_connection( connecttab* c, struct timeval* tvP );
1496 -static void idle_read_connection( ClientData client_data, struct timeval* nowP );
1497 -static void idle_send_connection( ClientData client_data, struct timeval* nowP );
1498 static void wakeup_connection( ClientData client_data, struct timeval* nowP );
1499 static void linger_clear_connection( ClientData client_data, struct timeval* nowP );
1500 static void occasional( ClientData client_data, struct timeval* nowP );
1501 +static void periodic_jobs( ClientData client_data, struct timeval* nowP );
1503 static void show_stats( ClientData client_data, struct timeval* nowP );
1505 static void logstats( struct timeval* nowP );
1507 +static void boot_request(connecttab *c, struct timeval *tvP);
1509 +typedef void (*handler_func)(connecttab*, struct timeval *);
1590 …if ( tmr_create( (struct timeval*) 0, show_stats, JunkClientData, STATS_TIME * 1000L, 1 ) == (Time…
1787 +setup_read_body(connecttab *c, struct timeval *tvP)
1838 +setup_sending(connecttab *c, int state, struct timeval *tvP)
1852 +static void handle_request( connecttab *c, struct timeval *tvP);
1856 handle_read( connecttab* c, struct timeval* tvP )
1924 +handle_request( connecttab *c, struct timeval *tvP)
1959 +static void boot_request(connecttab *c, struct timeval *tvP)
2023 handle_send( connecttab* c, struct timeval* tvP )
2083 +handle_read_body(connecttab *c, struct timeval *tvP)
2109 +handle_send_resp(connecttab *c, struct timeval *tvP)
2146 -clear_connection( connecttab* c, struct timeval* tvP )
2147 +clear_connection( connecttab* c, struct timeval* tvP, int doKeep )
2243 -idle_read_connection( ClientData client_data, struct timeval* nowP )
2261 -idle_send_connection( ClientData client_data, struct timeval* nowP )
2278 wakeup_connection( ClientData client_data, struct timeval* nowP )
2288 +periodic_jobs( ClientData client_data, struct timeval* nowP )
2329 +timeout_conns(ClientData client_data, struct timeval *nowP)