Lines Matching refs:data_
194 sample->data_.id = config.ids_[0]; in BroadcastSample()
203 reportJsonFile_->UpdateReportSample(sample->data_.id, sample->data_.pid, sample->data_.tid, in ProcessSample()
204 sample->data_.period); in ProcessSample()
205 reportJsonFile_->UpdateReportCallStack(sample->data_.id, sample->data_.pid, in ProcessSample()
206 sample->data_.tid, sample->data_.period, in ProcessSample()
213 *sample, static_cast<uint32_t>(GetReport().GetConfigIndex(sample->data_.id)), in ProcessSample()
234 auto prevIt = prevSampleCache_.find(sample->data_.tid); in RecordCallBack()
237 prevSampleCache_[sample->data_.tid] = std::move(sample); in RecordCallBack()
243 HLOGV("calc time %llu - %llu", sample->data_.time, prevSample->data_.time); in RecordCallBack()
244 if (sample->data_.time > prevSample->data_.time) { in RecordCallBack()
245 prevSample->data_.period = sample->data_.time - prevSample->data_.time; in RecordCallBack()
247 prevSample->data_.period = 1u; in RecordCallBack()
255 HLOGV("current sample period %llu ", sample->data_.period); in RecordCallBack()
258 if (cpuOffMode_ and cpuOffids_.size() > 0 and cpuOffids_.count(sample->data_.id) > 0) { in RecordCallBack()
429 sample->data_.period = 1u; in FlushCacheRecord()
430 if (cpuOffMode_ and cpuOffids_.size() > 0 and cpuOffids_.count(sample->data_.id) > 0) { in FlushCacheRecord()