Home | History | Annotate | Download | only in src

Lines Matching full:start_time

82                      const struct timeval& start_time) {
89 time_t seconds = time_now.tv_sec - start_time.tv_sec;
91 (time_now.tv_usec - start_time.tv_usec) / 1000);
116 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) {
121 int seconds = static_cast<int>(time_now.tv_sec - start_time.tv_sec);
126 int useconds = static_cast<int>(time_now.tv_usec - start_time.tv_usec);
303 const struct timeval& start_time,
326 start_time) ||
327 (TimeIsOut(start_time, total_timeout))) {
377 const struct timeval& start_time,
391 (TimeIsOut(start_time, total_timeout))) {
490 struct timeval start_time;
491 gettimeofday(&start_time, NULL);
529 Local<Value> accumulator = GetStdout(isolate, stdout_fds[kReadFD], start_time,
537 if (!WaitForChild(isolate, pid, child_waiter, start_time, read_timeout,