Home | History | Annotate | Download | only in qtools

Lines Matching full:time

188                 event->time = bb->next_time;
192 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
193 event->pid = trace_->FindCurrentPid(event->time);
214 event->time = nextrec_.bb_rec.start_time;
218 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
219 event->pid = trace_->FindCurrentPid(event->time);
236 event->time = bb->next_time;
240 event->num_insns = trace_->FindNumInsns(event->bb_num, event->time);
241 event->pid = trace_->FindCurrentPid(event->time);
340 bool AddrReader::ReadAddr(uint64_t *time, uint32_t *addr)
350 *time = 0;
356 *time = prev_time_;
387 bool ExcReader::ReadExc(uint64_t *time, uint32_t *current_pc, uint64_t *recnum,
404 *time = prev_time_;
445 event->time = prev_time_;
599 method_record->time = 0;
608 method_record->time = prev_time_;
1156 uint64_t time;
1158 exc_end_ = internal_exc_reader_->ReadExc(&time, &current_pc, &exc_recnum_,
1175 // Finds the current pid for the given time. This routine reads the pid
1176 // trace file and assumes that the "time" parameter is monotonically
1178 int TraceReaderBase::FindCurrentPid(uint64_t time)
1182 if (time < next_pid_switch_time_)
1193 if (event.time > time) {
1195 next_pid_switch_time_ = event.time;