Home
last modified time | relevance | path

Searched refs:flagTime (Results 1 – 7 of 7) sorted by relevance

/developtools/profiler/host/smartperf/client/client_command/
Dparse_trace.cpp63 flagTime = line.substr(position1 + flagTimeSize, position2 - position1 - flagTimeSize); in ParseNohTrace()
65 endTime = flagTime; in ParseNohTrace()
69 if ((std::stof(flagTime) - std::stof(endTime)) > dataThreshold) { in ParseNohTrace()
72 endTime = flagTime; in ParseNohTrace()
260 flagTime = "0"; in GetStartTime()
Dparse_click_response_trace.cpp133 flagTime = "0"; in GetStartTime()
Dparse_click_complete_trace.cpp141 flagTime = "0"; in GetStartTime()
/developtools/profiler/host/smartperf/client/client_command/include/
Dparse_click_response_trace.h32 std::string flagTime = "0";
Dparse_click_complete_trace.h33 std::string flagTime = "0"; variable
Dparse_trace.h38 std::string flagTime = "0"; variable
/developtools/smartperf_host/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts598 let flagTime: number = this.currentSlicesTime.startTime!;
600 if (flagTime > this.range.endNS) {
601 let offsetNs = 20 * unitValue + flagTime - this.range.endNS;
604 } else if (flagTime < this.range.startNS) {
605 let offsetNs = this.range.startNS - flagTime + 20 * unitValue; variable