Home
last modified time | relevance | path

Searched refs:point (Results 1 – 25 of 28) sorted by relevance

12

/developtools/smartperf_host/trace_streamer/src/parser/
Dcommon_types.h81 TracePoint(const TracePoint& point) in TracePoint() argument
82 : phase_(point.phase_), in TracePoint()
83 tgid_(point.tgid_), in TracePoint()
84 name_(point.name_), in TracePoint()
85 value_(point.value_), in TracePoint()
86 categoryGroup_(point.categoryGroup_), in TracePoint()
87 chainId_(point.chainId_), in TracePoint()
88 spanId_(point.spanId_), in TracePoint()
89 parentSpanId_(point.parentSpanId_), in TracePoint()
90 flag_(point.flag_), in TracePoint()
[all …]
Dprint_event_parser.cpp47 TracePoint point; in ParsePrintEvent() local
48 if (GetTracePoint(event, point) != PARSE_SUCCESS) { in ParsePrintEvent()
52 if (point.tgid_) { in ParsePrintEvent()
54 const_cast<BytraceLine&>(line).tgid = point.tgid_; in ParsePrintEvent()
55 streamFilters_->processFilter_->GetOrCreateInternalPid(ts, point.tgid_); in ParsePrintEvent()
57 switch (point.phase_) { in ParsePrintEvent()
59 ParseBeginEvent(comm, ts, pid, point, line); in ParsePrintEvent()
63 ParseEndEvent(ts, pid, point); in ParsePrintEvent()
67 ParseStartEvent(comm, ts, pid, point, line); in ParsePrintEvent()
71 ParseFinishEvent(ts, pid, point, line); in ParsePrintEvent()
[all …]
Dprint_event_parser.h39 …ParseBeginEvent(const std::string& comm, uint64_t ts, uint32_t pid, TracePoint& point, const Bytra…
40 void ParseEndEvent(uint64_t ts, uint32_t pid, const TracePoint& point);
44 const TracePoint& point,
46 …void ParseFinishEvent(uint64_t ts, uint32_t pid, const TracePoint& point, const BytraceLine& line);
47 void ParseCreateEvent(uint64_t ts, const TracePoint& point);
65 …bool HandleAnimationBeginEvent(const TracePoint& point, size_t callStackRow, const BytraceLine& li…
/developtools/smartperf_host/trace_streamer/test/unittest/filter/
Danimation_filter_test.cpp51 TracePoint point; variable
63 point.funcPrefix_ = nonRsUniProcessEvents[i];
64 …auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, CALLSTACK_SLICE…
77 TracePoint point; variable
97 point.funcPrefix_ = funcPrefixs[1];
98 …auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, CALLSTACK_SLICE…
112 point.funcPrefix_ = funcPrefixs[1];
113 point.name_ = invalidName;
115 auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, curStackRow);
118 point.funcPrefix_ = funcPrefixs[0];
[all …]
/developtools/smartperf_host/trace_streamer/src/filter/
Danimation_filter.cpp71 bool AnimationFilter::UpdateDeviceScreenSize(const TracePoint& point) in UpdateDeviceScreenSize() argument
76 if (!std::regex_search(point.funcArgs_, matcheLine, screenSizePattern)) { in UpdateDeviceScreenSize()
77 TS_LOGE("Not support this event: %s\n", point.name_.data()); in UpdateDeviceScreenSize()
87 bool AnimationFilter::UpdateDeviceInfoEvent(const TracePoint& point, const BytraceLine& line) in UpdateDeviceInfoEvent() argument
90 StartWith(point.name_, frameRateCmd_)) { in UpdateDeviceInfoEvent()
93 StartWith(point.name_, screenSizeCmd_)) { in UpdateDeviceInfoEvent()
94 return UpdateDeviceScreenSize(point); in UpdateDeviceInfoEvent()
98 bool AnimationFilter::BeginDynamicFrameEvent(const TracePoint& point, size_t callStackRow) in BeginDynamicFrameEvent() argument
100 if (StartWith(point.name_, frameCountCmd_)) { in BeginDynamicFrameEvent()
103 } else if (StartWith(point.name_, realFrameRateCmd_)) { in BeginDynamicFrameEvent()
[all …]
Danimation_filter.h36 bool UpdateDeviceInfoEvent(const TracePoint& point, const BytraceLine& line);
37 bool BeginDynamicFrameEvent(const TracePoint& point, size_t callStackRow);
39 bool StartAnimationEvent(const BytraceLine& line, const TracePoint& point, size_t callStackRow);
47 bool UpdateDeviceScreenSize(const TracePoint& point);
/developtools/profiler/host/smartperf/client/client_command/include/
Dstartup_delay.h26 void InputEvent(const std::string &point);
27 std::thread ThreadInputEvent(const std::string &point);
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/
DCalculationUtils.ts28 public point: number property in CalculationUtils
47 this.point = gameFPS == 30 ? 25 : gameFPS == 40 ? 30 : gameFPS == 60 ? 45 : 10
147 if (this.fpsList[i] < this.point) {
/developtools/profiler/host/smartperf/client/client_command/
Dparse_click_response_trace.cpp67 size_t point = endTime.find("."); in GetTime() local
69 endTime = endTime.substr(point - subNum); in GetTime()
70 startTime = startTime.substr(point - subNum); in GetTime()
Dstartup_delay.cpp57 void StartUpDelay::InputEvent(const std::string &point) in InputEvent() argument
62 std::string cmd = "uinput -T -d " + point + " -u" + point; in InputEvent()
65 std::thread StartUpDelay::ThreadInputEvent(const std::string &point) in ThreadInputEvent() argument
67 std::thread thInputEvent(&StartUpDelay::InputEvent, this, point); in ThreadInputEvent()
Dparse_click_complete_trace.cpp77 size_t point = endTime.find("."); in GetTime() local
79 endTime = endTime.substr(point - subNum); in GetTime()
80 startTime = startTime.substr(point - subNum); in GetTime()
/developtools/smartperf_host/ide/test/trace/component/trace/timer-shaft/
DRect.test.ts20 let point = new Point(); variable
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DRadarChartRenderer.ets371 public drawHighlightCircle( point:MPPointF,
384 outerPaintCircle.setX(point.x-outerRadius)
385 outerPaintCircle.setY(point.y-outerRadius)
390 innerPaintCir.setX(point.x-innerRadius)
391 innerPaintCir.setY(point.y-innerRadius)
406 strokePaintCir.setX(point.x-outerRadius)
407 strokePaintCir.setY(point.y-outerRadius)
DAxisRenderer.ets128 // calculate the starting and entry point of the y-labels (depending on
/developtools/hiperf/test/unittest/resource/testdata/
Dphdrs_from_readelf_643 Entry point 0x22f0
Dphdrs_from_readelf_323 Entry point 0x1320
/developtools/profiler/device/plugins/native_daemon/test/unittest/resource/testdata/
Dphdrs_from_readelf_323 Entry point 0x1320
Dphdrs_from_readelf_643 Entry point 0x22f0
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DRect.ets212 * An empty rectangle never contains any point.
214 * @param x The X coordinate of the point being tested for containment
215 * @param y The Y coordinate of the point being tested for containment
/developtools/smartperf_host/ide/test/trace/database/ui-worker/
DProcedureWorkerCommon.test.ts155 let point = new Point(); variable
156 expect(point).not.toBeUndefined();
/developtools/smartperf_host/trace_streamer/test/unittest/systrace/
Devent_parser_test.cpp1035 TracePoint point; variable
1038 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point);
1051 TracePoint point; variable
1054 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point);
1067 TracePoint point; variable
1070 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point);
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DIMarker.ets31 …* @return The offset for drawing at the specific `point`. This allows conditional adjusting of the…
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DUtils.ets178 // * Calculates the position around a center point, depending on the distance
242 // To have a consistent point of reference, we always draw left-aligned
DTransformer.ets374 * returns the x and y values in the chart at the given touch point
/developtools/ace_ets2bundle/compiler/sample/pages/
Dwilldo.ets153 … the point of not just using an array here is to clarify ForEach can not just perate on the

12