Home
last modified time | relevance | path

Searched refs:RecordWithSeq (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Drecord.h551 struct RecordWithSeq { struct
555 RecordWithSeq(uint32_t seq, Record* record) : seq(seq), record(record) {} in RecordWithSeq() argument
556 bool IsHappensBefore(const RecordWithSeq& other) const;
560 bool operator()(const RecordWithSeq& r1, const RecordWithSeq& r2);
568 std::priority_queue<RecordWithSeq, std::vector<RecordWithSeq>,
Drecord.cpp945 bool RecordCache::RecordWithSeq::IsHappensBefore( in IsHappensBefore()
946 const RecordWithSeq& other) const { in IsHappensBefore()
965 bool RecordCache::RecordComparator::operator()(const RecordWithSeq& r1, in operator ()()
966 const RecordWithSeq& r2) { in operator ()()
985 queue_.push(RecordWithSeq(cur_seq_++, record.release())); in Push()