Lines Matching refs:now
40 struct timeval now; in fpm_request_accepting() local
42 fpm_clock_get(&now); in fpm_request_accepting()
53 proc->tv = now; in fpm_request_accepting()
64 struct timeval now; in fpm_request_reading_headers() local
70 fpm_clock_get(&now); in fpm_request_reading_headers()
85 proc->tv = now; in fpm_request_reading_headers()
86 proc->accepted = now; in fpm_request_reading_headers()
113 struct timeval now; in fpm_request_info() local
115 fpm_clock_get(&now); in fpm_request_info()
124 proc->tv = now; in fpm_request_info()
156 struct timeval now; in fpm_request_executing() local
158 fpm_clock_get(&now); in fpm_request_executing()
167 proc->tv = now; in fpm_request_executing()
174 struct timeval now; in fpm_request_end() local
180 fpm_clock_get(&now); in fpm_request_end()
191 proc->tv = now; in fpm_request_end()
192 timersub(&now, &proc->accepted, &proc->duration); in fpm_request_end()
207 struct timeval now; in fpm_request_finished() local
209 fpm_clock_get(&now); in fpm_request_finished()
218 proc->tv = now; in fpm_request_finished()
222 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *now, int terminate_time… in fpm_request_check_timed_out() argument
248 timersub(now, &proc.accepted, &tv); in fpm_request_check_timed_out()