Home
last modified time | relevance | path

Searched refs:clockId_ (Results 1 – 22 of 22) sorted by relevance

/developtools/smartperf_host/trace_streamer/src/parser/ebpf_parser/
Dpaged_memory_data_parser.cpp46 auto newStartTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, startTs); in PagingData()
47 timeParser_->UpdatePluginTimeRange(clockId_, startTs, newStartTs); in PagingData()
48 auto newEndTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, endTs); in PagingData()
49 timeParser_->UpdatePluginTimeRange(clockId_, endTs, newEndTs); in PagingData()
Dbio_latency_data_parser.cpp76 auto newStartTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, startTs); in ParseBioLatencyEvent()
77 timeParser_->UpdatePluginTimeRange(clockId_, startTs, newStartTs); in ParseBioLatencyEvent()
78 auto newEndTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, endTs); in ParseBioLatencyEvent()
79 timeParser_->UpdatePluginTimeRange(clockId_, endTs, newEndTs); in ParseBioLatencyEvent()
Dfile_system_data_parser.cpp61 timeParser_->UpdatePluginTimeRange(clockId_, fsFixedHeadrAddr->startTime, newStartTs); in StartEndTime()
62 timeParser_->UpdatePluginTimeRange(clockId_, fsFixedHeadrAddr->endTime, newEndTs); in StartEndTime()
128 …auto newStartTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, fsFixedHeadrAddr->sta… in ParseFileSystemEvent()
129 …auto newEndTs = streamFilters_->clockFilter_->ToPrimaryTraceTime(clockId_, fsFixedHeadrAddr->endTi… in ParseFileSystemEvent()
Debpf_base.h54 ClockId clockId_ = INVALID_UINT32; variable
Debpf_base.cpp40 clockId_ = ebpfToTSClockType_.at(clockId); in InitEbpfDataParser()
/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_hidump_parser.h37 return clockId_; in ClockId()
41 uint8_t clockId_;
Dhtrace_hidump_parser.cpp24 : EventParserBase(dataCache, ctx), clockId_(0) in HtraceHidumpParser()
46 clockId_ = hidumpData.id(); in Parse()
/developtools/profiler/device/plugins/api/src/
Dbuffer_writer.h52 clockId_ = clockId; in SetClockId()
69 clockid_t clockId_ = CLOCK_REALTIME; variable
Dbuffer_writer.cpp83 clock_gettime(clockId_, &ts); in Write()
85 pluginData.set_clock_id(static_cast<ProfilerPluginData_ClockId>(clockId_)); in Write()
117 profilerPluginData_->set_clock_id(static_cast<ProfilerPluginData_ClockId>(clockId_)); in FinishReport()
Dplugin_module.h87 clockid_t clockId_ = CLOCK_REALTIME; variable
Dplugin_module.cpp107 clockId_ = clockId; in SetClockId()
116 return clockId_; in GetClockId()
/developtools/profiler/device/plugins/native_daemon/native_memory_profiler_sa/src/
Dnative_memory_profiler_sa_config.cpp45 WRITEINT32(parcel, clockId_); in Marshalling()
78 READINT32(parcel, config->clockId_); in Unmarshalling()
103 config->statisticsInterval_, config->clockId_); in PrintConfig()
/developtools/smartperf_host/trace_streamer/src/parser/hiperf_parser/
Dperf_data_parser.cpp226 clockId_ = attr->attr.clockid; in SplitPerfParsingAttr()
227 TS_LOGI("useClockId_ = %u, clockId_ = %u", useClockId_, clockId_); in SplitPerfParsingAttr()
330 …imeStamp = streamFilters_->clockFilter_->ToPrimaryTraceTime(perfToTSClockType_.at(clockId_), time); in SplitPerfParsingData()
332 UpdatePluginTimeRange(perfToTSClockType_.at(clockId_), time, newTimeStamp); in SplitPerfParsingData()
582 clockId_ = attrIds_[0].attr.clockid; in UpdateClockType()
583 TS_LOGI("useClockId_ = %u, clockId_ = %u", useClockId_, clockId_); in UpdateClockType()
646 …streamFilters_->clockFilter_->ToPrimaryTraceTime(perfToTSClockType_.at(clockId_), sample->data_.ti… in UpdatePerfSampleData()
648 UpdatePluginTimeRange(perfToTSClockType_.at(clockId_), sample->data_.time, newTimeStamp); in UpdatePerfSampleData()
Dperf_data_parser.h158 uint32_t clockId_ = 0; variable
/developtools/profiler/device/plugins/native_daemon/native_memory_profiler_sa/include/
Dnative_memory_profiler_sa_config.h55 clockid_t clockId_{CLOCK_REALTIME};
/developtools/profiler/hiebpf/include/
Dcommand.h66 int clockId_ = CLOCK_TYPE::BootTime; variable
/developtools/hiperf/src/
Dsubcommand_record.cpp144 printf(" clockId_:\t%s\n", clockId_.c_str()); in DumpOptions()
216 if (!Option::GetOptionValue(args, "--clockid", clockId_)) { in GetOptions()
399 if (!clockId_.empty() && GetClockId(clockId_) == -1) { in CheckArgsRange()
400 printf("Invalid --clockid value %s\n", clockId_.c_str()); in CheckArgsRange()
781 if (!clockId_.empty()) { in PreparePerfEvent()
782 perfEvents_.SetClockId(GetClockId(clockId_)); in PreparePerfEvent()
Dperf_events.cpp364 if (clockId_ != -1) { in AddEvent()
366 eventItem.attr.clockid = clockId_; in AddEvent()
/developtools/profiler/device/plugins/native_daemon/
Dnative_daemon_client.cpp131 config->clockId_ = std::stoi(argv[++i]); in main()
/developtools/hiperf/include/
Dperf_events.h387 clockId_ = clockId; in SetClockId()
598 int clockId_ = -1; variable
Dsubcommand_record.h222 std::string clockId_ = {}; variable
/developtools/profiler/device/plugins/native_daemon/src/
Dhook_manager.cpp551 hookConfig_.set_clock(COMMON::GetClockStr(config->clockId_)); in SetHookConfig()