• Home
  • Raw
  • Download

Lines Matching refs:Read

100 bool PerfFileSection::Read(uint32_t &value)  in Read()  function in OHOS::Developtools::HiPerf::PerfFileSection
103 return Read((char *)&value, sizeof(uint32_t)); in Read()
106 bool PerfFileSection::Read(uint64_t &value) in Read() function in OHOS::Developtools::HiPerf::PerfFileSection
110 return Read((char *)&value, sizeof(uint64_t)); in Read()
113 bool PerfFileSection::Read(std::string &value) in Read() function in OHOS::Developtools::HiPerf::PerfFileSection
116 if (!Read(size)) { in Read()
125 if (!Read(buf, size)) { in Read()
140 bool PerfFileSection::Read(char *buf, size_t size) in Read() function in OHOS::Developtools::HiPerf::PerfFileSection
170 if (!Read(stdString_)) { in PerfFileSectionString()
229 if (!Read(symbolFileNumber)) { in PerfFileSectionSymbolsFiles()
242 Read(symbolFileStruct.filePath_); in PerfFileSectionSymbolsFiles()
245 Read(symbolFileStruct.symbolType_); in PerfFileSectionSymbolsFiles()
246 Read(symbolFileStruct.textExecVaddr_); in PerfFileSectionSymbolsFiles()
247 Read(symbolFileStruct.textExecVaddrFileOffset_); in PerfFileSectionSymbolsFiles()
248 Read(symbolFileStruct.buildId_); in PerfFileSectionSymbolsFiles()
251 if (!Read(symbolsNumber)) { in PerfFileSectionSymbolsFiles()
262 Read(symbolStruct.vaddr_); in PerfFileSectionSymbolsFiles()
263 Read(symbolStruct.len_); in PerfFileSectionSymbolsFiles()
264 Read(symbolStruct.symbolName_); in PerfFileSectionSymbolsFiles()
308 if (!Read(nrCpusAvailable_) || !Read(nrCpusOnline_)) { in PerfFileSectionNrCpus()
346 if (!Read(value_)) { in PerfFileSectionU64()
390 if (!Read(nr)) { in PerfFileSectionEventDesc()
394 if (!Read(attrSize)) { in PerfFileSectionEventDesc()
406 if (!Read(reinterpret_cast<char*>(&(eventDesc.attr)), sizeof(perf_event_attr))) { in PerfFileSectionEventDesc()
412 } else if (!Read(reinterpret_cast<char*>(&(eventDesc.attr)), attrSize)) { in PerfFileSectionEventDesc()
417 if (!Read(nrIds)) { in PerfFileSectionEventDesc()
425 if (!Read(eventDesc.name)) { in PerfFileSectionEventDesc()
429 if (!Read(reinterpret_cast<char*>(eventDesc.ids.data()), sizeof(uint64_t) * nrIds)) { in PerfFileSectionEventDesc()