Home | History | Annotate | Download | only in strace

Lines Matching full:time

10 # It will add elapsed time for each process in that case.
44 my ($pid, $call, $args, $result, $time);
51 $time = $1 * 3600 + $2 * 60 + $3;
53 $time = $time + $4 / 1000000;
57 $time = $1 + ($2 / 1000000);
83 handle_killed($pid, $time);
93 handle_trace($pid, $call, $args, $result, $time);
211 my ($pid, $call, $args, $result, $time) = @_;
214 if (defined $time and not defined $pr{$pid}{start}) {
215 $pr{$pid}{start} = $time;
241 $pr{$pid}{end} = $time if defined $time;
246 my ($pid, $time) = @_;
247 $pr{$pid}{end} = $time if defined $time;