Home
last modified time | relevance | path

Searched refs:ioEntry_ (Results 1 – 2 of 2) sorted by relevance

/developtools/profiler/device/plugins/diskio_plugin/src/
Ddiskio_data_plugin.cpp28 ioEntry_ = nullptr; in DiskioDataPlugin()
56 ioEntry_ = std::make_shared<IoStats>(protoConfig_.report_io_stats()); in Start()
69 if (protoConfig_.report_io_stats() && ioEntry_ != nullptr) { in Report()
70 ioEntry_->GetIoData(); in Report()
71 ioEntry_->PutPluginStatsData(dataProto.mutable_statsdata()); in Report()
90 if (ioEntry_ != nullptr) { in Stop()
91 ioEntry_.reset(); in Stop()
92 ioEntry_ = nullptr; in Stop()
/developtools/profiler/device/plugins/diskio_plugin/include/
Ddiskio_data_plugin.h70 std::shared_ptr<IoStats> ioEntry_; variable