Home
last modified time | relevance | path

Searched refs:InternalTime (Results 1 – 13 of 13) sorted by relevance

/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/ftrace/template/
Danimation_stdtype.h27 … TableRowId AppendAnimation(InternalTime inputTime, InternalTime startPoint, DataIndex nameIndex);
28 void UpdateStartPoint(TableRowId index, InternalTime startPoint);
29 void UpdateEndPoint(TableRowId index, InternalTime endPoint);
30 void UpdateFrameInfo(TableRowId index, InternalTime frameInfo);
32 const std::deque<InternalTime> &InputTimes() const;
33 const std::deque<InternalTime> &StartPoints() const;
34 const std::deque<InternalTime> &EndPoints() const;
41 std::deque<InternalTime> inputTimes_ = {};
42 std::deque<InternalTime> startPoints_ = {};
43 std::deque<InternalTime> endPoins_ = {};
[all …]
Danimation_stdtype.cpp19 TableRowId Animation::AppendAnimation(InternalTime inputTime, InternalTime startPoint, DataIndex na… in AppendAnimation()
29 void Animation::UpdateStartPoint(TableRowId index, InternalTime startPoint) in UpdateStartPoint()
35 void Animation::UpdateEndPoint(TableRowId index, InternalTime endPoint) in UpdateEndPoint()
41 void Animation::UpdateFrameInfo(TableRowId index, InternalTime frameInfo) in UpdateFrameInfo()
51 const std::deque<InternalTime> &Animation::InputTimes() const in InputTimes()
55 const std::deque<InternalTime> &Animation::StartPoints() const in StartPoints()
59 const std::deque<InternalTime> &Animation::EndPoints() const in EndPoints()
144 void DynamicFrame::UpdateEndTime(TableRowId index, InternalTime endTime) in UpdateEndTime()
182 const std::deque<InternalTime> &DynamicFrame::EndTimes() const in EndTimes()
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/ftrace/
Dsched_stdtype.cpp19 TableRowId ThreadStateData::AppendThreadState(InternalTime ts, in AppendThreadState()
20 InternalTime dur, in AppendThreadState()
37 void ThreadStateData::SetDuration(TableRowId index, InternalTime dur) in SetDuration()
44 std::deque<InternalTime> timeStampsTemp; in SortAllRowByTs()
50 std::deque<InternalTime> durationsTemp; in SortAllRowByTs()
76 TableRowId ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts) in UpdateDuration()
84 bool ThreadStateData::End(TableRowId index, InternalTime ts) in End()
101 void ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts, TableRowId idState) in UpdateDuration()
113 TableRowId ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts, InternalCpu cpu, Tabl… in UpdateDuration()
Dsched_stdtype.h24 TableRowId AppendThreadState(InternalTime ts,
25 InternalTime dur,
29 void SetDuration(TableRowId index, InternalTime dur);
30 TableRowId UpdateDuration(TableRowId index, InternalTime ts);
31 bool End(TableRowId index, InternalTime ts);
34 void UpdateDuration(TableRowId index, InternalTime ts, TableRowId idState);
36 … TableRowId UpdateDuration(TableRowId index, InternalTime ts, InternalCpu cpu, TableRowId idState);
52 const std::deque<InternalTime> &DursData() const in DursData()
82 std::deque<InternalTime> durations_;
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/
Dcommon_stdtype.h36 InternalTime startT_ = 0;
37 InternalTime endT_ = 0;
47 InternalTime startT_ = 0;
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
Ddemo_table_base.h74 …al void DemoFilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &times);
Ddemo_table_base.cpp217 …:Cursor::DemoFilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &times) in DemoFilterTS()
/developtools/smartperf_host/trace_streamer/src/base/
Dts_common.h218 using InternalTime = uint64_t; variable
Dindex_map.cpp139 void IndexMap::FilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &time… in FilterTS()
Dindex_map.h40 void FilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &times);
/developtools/smartperf_host/trace_streamer/src/table/base/include/
Dtable_base.h64 …virtual void FilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &times…
/developtools/smartperf_host/trace_streamer/test/unittest/table/
Dtable_test.cpp1287 InternalTime ts = 1663869124160;
1288 InternalTime dur = 200;
1293 InternalTime ts1 = 1663869224160;
1294 InternalTime dur1 = 200;
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.cpp270 …ase::Cursor::FilterTS(unsigned char op, sqlite3_value *argv, const std::deque<InternalTime> &times) in FilterTS()