Home
last modified time | relevance | path

Searched refs:stop_time (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/lib/Net/
H A DPing.pm318 $self->{stop_time} = 0;
1407 my $stop_time = shift;
1410 return $self->ping_syn_fork($host, $ip, $start_time, $stop_time);
1449 my $entry = [ $host, $ip, $fh, $start_time, $stop_time, $self->{port_num} ];
1451 if ($self->{stop_time} < $stop_time) {
1452 $self->{stop_time} = $stop_time;
1460 my ($self, $host, $ip, $start_time, $stop_time) = @_;
1469 my $entry = [ $host, $ip, $pid, $start_time, $stop_time ];
1471 if ($self->{stop_time} < $stop_time) {
1472 $self->{stop_time} = $stop_time;
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dtimevar.c224 struct timevar_time_def *stop_time) in timevar_accumulate() argument
226 timer->user += stop_time->user - start_time->user; in timevar_accumulate()
227 timer->sys += stop_time->sys - start_time->sys; in timevar_accumulate()
228 timer->wall += stop_time->wall - start_time->wall; in timevar_accumulate()
229 timer->ggc_mem += stop_time->ggc_mem - start_time->ggc_mem; in timevar_accumulate()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dtimevar.c215 timevar_accumulate (timer, start_time, stop_time) in timevar_accumulate() argument
218 struct timevar_time_def *stop_time;
220 timer->user += stop_time->user - start_time->user;
221 timer->sys += stop_time->sys - start_time->sys;
222 timer->wall += stop_time->wall - start_time->wall;
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DTimer.cpp85 auto stop_time = steady_clock::now(); in ~Timer() local
86 auto total_dur = stop_time - m_total_start; in ~Timer()
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dremote-rdp.c262 time_t stop_time = now + 10; /* Try and sync for 10 seconds, then give up */ in rdp_init() local
265 while (time (0) < stop_time && !sync) in rdp_init()