/developtools/smartperf_host/trace_streamer/src/parser/ |
D | common_types.h | 82 TracePoint(const TracePoint &point) in TracePoint() argument 83 : phase_(point.phase_), in TracePoint() 84 tgid_(point.tgid_), in TracePoint() 85 name_(point.name_), in TracePoint() 86 value_(point.value_), in TracePoint() 87 categoryGroup_(point.categoryGroup_), in TracePoint() 88 chainId_(point.chainId_), in TracePoint() 89 spanId_(point.spanId_), in TracePoint() 90 parentSpanId_(point.parentSpanId_), in TracePoint() 91 flag_(point.flag_), in TracePoint() [all …]
|
D | print_event_parser.cpp | 48 TracePoint point; in ParsePrintEvent() local 49 if (GetTracePoint(event, point) != PARSE_SUCCESS) { in ParsePrintEvent() 53 if (point.tgid_) { in ParsePrintEvent() 55 const_cast<BytraceLine &>(line).tgid = point.tgid_; in ParsePrintEvent() 56 streamFilters_->processFilter_->GetOrCreateInternalPid(ts, point.tgid_); in ParsePrintEvent() 58 switch (point.phase_) { in ParsePrintEvent() 60 ParseBeginEvent(comm, ts, pid, point, line); in ParsePrintEvent() 64 ParseEndEvent(ts, pid, point); in ParsePrintEvent() 68 ParseStartEvent(comm, ts, pid, point, line); in ParsePrintEvent() 72 ParseFinishEvent(ts, pid, point, line); in ParsePrintEvent() [all …]
|
D | print_event_parser.h | 41 TracePoint &point, 43 void ParseEndEvent(uint64_t ts, uint32_t pid, const TracePoint &point); 47 const TracePoint &point, 49 …void ParseFinishEvent(uint64_t ts, uint32_t pid, const TracePoint &point, const BytraceLine &line); 50 void ParseCreateEvent(uint64_t ts, const TracePoint &point); 68 …bool HandleAnimationBeginEvent(const TracePoint &point, size_t callStackRow, const BytraceLine &li…
|
/developtools/smartperf_host/trace_streamer/test/unittest/filter/ |
D | animation_filter_test.cpp | 51 TracePoint point; variable 63 point.funcPrefix_ = nonRsUniProcessEvents[i]; 64 …auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, CALLSTACK_SLICE… 77 TracePoint point; variable 98 point.funcPrefix_ = funcPrefixs[1]; 99 …auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, CALLSTACK_SLICE… 114 point.funcPrefix_ = funcPrefixs[1]; 115 point.name_ = invalidName; 117 auto res = stream_.streamFilters_->animationFilter_->BeginDynamicFrameEvent(point, curStackRow); 120 point.funcPrefix_ = funcPrefixs[0]; [all …]
|
/developtools/smartperf_host/trace_streamer/src/filter/ |
D | animation_filter.cpp | 71 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 …]
|
D | animation_filter.h | 36 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/ |
D | startup_delay.h | 28 void InputEvent(const std::string &point); 29 std::thread ThreadInputEvent(const std::string &point);
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/bpftrace/ |
D | TabPaneSampleInstructionDistributions.ts | 230 isContains(point: unknown, x: number, y: number): boolean { 232 return x >= point.x && x <= point.x + 2 && point.y <= y && y <= point.y + point.height;
|
D | TabPaneSampleInstructionSelectionTotalTime.ts | 218 isContains(point: unknown, x: number, y: number): boolean { 220 return x >= point.x && x <= point.x + 2 && point.y <= y && y <= point.y + point.height;
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/ |
D | CalculationUtils.ts | 28 public point: number; property in CalculationUtils 47 this.point = 153 if (this.fpsList[i] < this.point) {
|
/developtools/profiler/host/smartperf/client/client_command/ |
D | parse_click_response_trace.cpp | 74 size_t point = endTime.find("."); in GetTime() local 76 endTime = endTime.substr(point - subNum); in GetTime() 77 startTime = startTime.substr(point - subNum); in GetTime()
|
D | parse_click_complete_trace.cpp | 84 size_t point = endTime.find("."); in GetTime() local 86 endTime = endTime.substr(point - subNum); in GetTime() 87 startTime = startTime.substr(point - subNum); in GetTime()
|
D | startup_delay.cpp | 57 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()
|
/developtools/smartperf_host/ide/test/trace/component/trace/timer-shaft/ |
D | Rect.test.ts | 20 let point = new Point(); variable
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/ |
D | RadarChartRenderer.ets | 382 point: MPPointF, 395 outerPaintCircle.setX(point.x - outerRadius); 396 outerPaintCircle.setY(point.y - outerRadius); 401 innerPaintCir.setX(point.x - innerRadius); 402 innerPaintCir.setY(point.y - innerRadius); 416 strokePaintCir.setX(point.x - outerRadius); 417 strokePaintCir.setY(point.y - outerRadius);
|
D | AxisRenderer.ets | 124 // calculate the starting and entry point of the y-labels (depending on
|
/developtools/profiler/device/plugins/native_daemon/test/unittest/resource/testdata/ |
D | phdrs_from_readelf_64 | 3 Entry point 0x22f0
|
D | phdrs_from_readelf_32 | 3 Entry point 0x1320
|
/developtools/hiperf/test/unittest/resource/testdata/ |
D | phdrs_from_readelf_32 | 3 Entry point 0x1320
|
D | phdrs_from_readelf_64 | 3 Entry point 0x22f0
|
/developtools/smartperf_host/ide/test/trace/database/ui-worker/ |
D | ProcedureWorkerCommon.test.ts | 161 let point = new Point(); variable 162 expect(point).not.toBeUndefined();
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/ |
D | Rect.ets | 213 * An empty rectangle never contains any point. 215 * @param x The X coordinate of the point being tested for containment 216 * @param y The Y coordinate of the point being tested for containment
|
/developtools/smartperf_host/trace_streamer/test/unittest/ptreader_parser/ |
D | event_parser_test.cpp | 1029 TracePoint point; variable 1032 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point); 1045 TracePoint point; variable 1048 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point); 1061 TracePoint point; variable 1064 int32_t result = eventParser.printEventParser_.GetTracePoint(str, point);
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
D | IMarker.ets | 30 …* @return The offset for drawing at the specific `point`. This allows conditional adjusting of the…
|
/developtools/ace_ets2bundle/compiler/sample/pages/ |
D | willdo.ets | 153 … the point of not just using an array here is to clarify ForEach can not just perate on the
|