| /developtools/hiperf/include/ |
| D | perf_event_record.h | 151 virtual bool GetBinary(std::vector<uint8_t> &buf) const = 0; 177 bool GetBinary(std::vector<uint8_t> &buf) const override; 193 bool GetBinary(std::vector<uint8_t> &buf) const override; 204 bool GetBinary(std::vector<uint8_t> &buf) const override; 225 bool GetBinary(std::vector<uint8_t> &buf) const override; 243 bool GetBinary(std::vector<uint8_t> &buf) const override; 270 bool GetBinary(std::vector<uint8_t> &buf) const override; 280 bool GetBinary(std::vector<uint8_t> &buf) const override; 290 bool GetBinary(std::vector<uint8_t> &buf) const override; 300 bool GetBinary(std::vector<uint8_t> &buf) const override; [all …]
|
| D | perf_file_format.h | 128 virtual bool GetBinary(char *buf, size_t size) = 0; 173 bool GetBinary(char *buf, size_t size); 211 bool GetBinary(char *buf, size_t size); 228 bool GetBinary(char *buf, size_t size); 240 bool GetBinary(char *buf, size_t size); 253 bool GetBinary(char *buf, size_t size);
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_event_record_test.cpp | 77 ASSERT_TRUE(recordIn.GetBinary(buff)); 112 ASSERT_TRUE(recordIn.GetBinary(buff)); 151 ASSERT_TRUE(recordIn.GetBinary(buff)); 186 ASSERT_TRUE(record.GetBinary(buff)); 208 ASSERT_TRUE(record.GetBinary(buff)); 231 ASSERT_TRUE(record.GetBinary(buff)); 254 ASSERT_TRUE(record.GetBinary(buff)); 276 ASSERT_TRUE(record.GetBinary(buff)); 429 ASSERT_TRUE(record.GetBinary(buff)); 564 ASSERT_TRUE(record.GetBinary(buff)); [all …]
|
| D | perf_file_format_test.cpp | 98 ASSERT_TRUE(withString.GetBinary(buff, sizeof(buff))); 104 ASSERT_TRUE(withBuff.GetBinary(buff, sizeof(buff))); 159 ASSERT_TRUE(withVector.GetBinary(buff, BIGK)); 172 ASSERT_TRUE(nrCpus.GetBinary(buff, sizeof(buff))); 190 ASSERT_TRUE(pfsu64.GetBinary(buff, sizeof(buff))); 244 ASSERT_TRUE(pfsEventDesc.GetBinary(buff, sizeof(buff)));
|
| /developtools/hiperf/src/ |
| D | perf_event_record.cpp | 289 bool PerfRecordSample::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordSample 442 bool PerfRecordMmap::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordMmap 522 bool PerfRecordMmap2::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordMmap2 560 bool PerfRecordLost::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordLost 600 bool PerfRecordComm::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordComm 633 bool PerfRecordExit::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordExit 661 bool PerfRecordThrottle::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordThrottle 689 bool PerfRecordUnthrottle::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordUnthrottle 716 bool PerfRecordFork::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordFork 744 bool PerfRecordRead::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() function in OHOS::Developtools::HiPerf::PerfRecordRead [all …]
|
| D | perf_file_format.cpp | 181 bool PerfFileSectionString::GetBinary(char *buf, size_t size) in GetBinary() function in OHOS::Developtools::HiPerf::PerfFileSectionString 271 bool PerfFileSectionSymbolsFiles::GetBinary(char *buf, size_t size) in GetBinary() function in OHOS::Developtools::HiPerf::PerfFileSectionSymbolsFiles 319 bool PerfFileSectionNrCpus::GetBinary(char *buf, size_t size) in GetBinary() function in OHOS::Developtools::HiPerf::PerfFileSectionNrCpus 356 bool PerfFileSectionU64::GetBinary(char *buf, size_t size) in GetBinary() function in OHOS::Developtools::HiPerf::PerfFileSectionU64 437 bool PerfFileSectionEventDesc::GetBinary(char *buf, size_t size) in GetBinary() function in OHOS::Developtools::HiPerf::PerfFileSectionEventDesc
|
| D | perf_file_writer.cpp | 135 if (!record.GetBinary(buf)) { in WriteRecord() 386 featureSection->GetBinary(&buf[0], featureSection->header.size); in WriteFeatureData()
|
| D | subcommand_dump.cpp | 407 if (!recordSample->GetBinary(buf)) { in ExprotUserData()
|
| /developtools/profiler/hiebpf/test/unittest/ |
| D | elf_symbol_info_test.cpp | 81 HWTEST_F(ElfSymbolInfoTest, GetBinary, TestSize.Level1) 87 uint32_t size = elfSymbolInfo.GetBinary(elfSymbolTable, buf);
|
| D | maps_info_test.cpp | 65 HWTEST_F(MapsInofTest, GetBinary, TestSize.Level1) 77 uint32_t size = mapsInfo.GetBinary(mapsItem, buf);
|
| /developtools/profiler/hiebpf/src/ |
| D | kernel_symbol_info.cpp | 38 void KernelSymbolInfo::GetBinary(const std::vector<SymbolItem> &symbolItems, in GetBinary() function in OHOS::Developtools::Hiebpf::KernelSymbolInfo 116 GetBinary(symbolItems, vaddrStart, vaddrEnd, strTabLen, buf); in GetSymbolData()
|
| D | maps_info.cpp | 48 uint32_t MapsInfo::GetBinary(const MapsItem &map, std::vector<uint8_t> &buf) in GetBinary() function in OHOS::Developtools::Hiebpf::MapsInfo
|
| D | elf_symbol_info.cpp | 88 uint32_t ElfSymbolInfo::GetBinary(const ElfSymbolTable &symbolTable, std::vector<uint8_t> &buf) in GetBinary() function in OHOS::Developtools::Hiebpf::ElfSymbolInfo
|
| /developtools/profiler/hiebpf/include/ |
| D | kernel_symbol_info.h | 44 static void GetBinary(const std::vector<SymbolItem> &symbolItems,
|
| D | elf_symbol_info.h | 51 uint32_t GetBinary(const ElfSymbolTable &symbolTable, std::vector<uint8_t> &buf);
|
| D | maps_info.h | 57 uint32_t GetBinary(const MapsItem &map, std::vector<uint8_t> &buf);
|