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.h25 …AppendThreadState(InternalTime ts, InternalTime dur, InternalCpu cpu, InternalTid itid, TableRowId…
26 void SetDuration(TableRowId index, InternalTime dur);
27 TableRowId UpdateDuration(TableRowId index, InternalTime ts);
28 bool End(TableRowId index, InternalTime ts);
31 void UpdateDuration(TableRowId index, InternalTime ts, TableRowId idState);
33 … TableRowId UpdateDuration(TableRowId index, InternalTime ts, InternalCpu cpu, TableRowId idState);
54 const std::deque<InternalTime>& TimeStamsData() const in TimeStamsData()
58 const std::deque<InternalTime>& DursData() const in DursData()
88 std::deque<InternalTime> timeStamps_;
89 std::deque<InternalTime> durations_;
Dsched_stdtype.cpp19 TableRowId ThreadStateData::AppendThreadState(InternalTime ts, in AppendThreadState()
20 InternalTime dur, in AppendThreadState()
36 void ThreadStateData::SetDuration(TableRowId index, InternalTime dur) in SetDuration()
43 std::deque<InternalTime> timeStampsTemp; in SortAllRowByTs()
49 std::deque<InternalTime> durationsTemp; in SortAllRowByTs()
75 TableRowId ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts) in UpdateDuration()
83 bool ThreadStateData::End(TableRowId index, InternalTime ts) in End()
100 void ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts, TableRowId idState) in UpdateDuration()
112 TableRowId ThreadStateData::UpdateDuration(TableRowId index, InternalTime ts, InternalCpu cpu, Tabl… in UpdateDuration()
/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.h212 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.h63 …virtual void FilterTS(unsigned char op, sqlite3_value* argv, const std::deque<InternalTime>& times…
/developtools/smartperf_host/trace_streamer/test/unittest/table/
Dtable_test.cpp1267 InternalTime ts = 1663869124160;
1268 InternalTime dur = 200;
1273 InternalTime ts1 = 1663869224160;
1274 InternalTime dur1 = 200;
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.cpp255 …ase::Cursor::FilterTS(unsigned char op, sqlite3_value* argv, const std::deque<InternalTime>& times) in FilterTS()