| /developtools/profiler/device/plugins/gpu_plugin/test/unittest/ |
| D | gpu_data_plugin_unittest.cpp | 106 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginGpuInfoStub() local 108 bufferData.resize(1, 0); in PluginGpuInfoStub() 111 ret = gpuPlugin.Report(bufferData.data(), bufferData.size()); in PluginGpuInfoStub() 113 gpuData.ParseFromArray(bufferData.data(), ret); in PluginGpuInfoStub()
|
| /developtools/profiler/device/plugins/diskio_plugin/test/unittest/ |
| D | diskio_data_plugin_unittest.cpp | 101 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginDiskioInfoStub() local 103 bufferData.resize(1, 0); in PluginDiskioInfoStub() 106 ret = diskioPlugin.Report(bufferData.data(), bufferData.size()); in PluginDiskioInfoStub() 108 diskioData.ParseFromArray(bufferData.data(), ret); in PluginDiskioInfoStub()
|
| /developtools/profiler/device/plugins/gpu_plugin/src/ |
| D | gpu_module.cpp | 32 static int GpuPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in GpuPluginReportResult() argument 36 return g_plugin->Report(bufferData, bufferSize); in GpuPluginReportResult()
|
| /developtools/profiler/device/plugins/cpu_plugin/src/ |
| D | cpu_module.cpp | 33 static int CpuPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in CpuPluginReportResult() argument 37 return g_plugin->Report(bufferData, bufferSize); in CpuPluginReportResult()
|
| /developtools/profiler/device/plugins/memory_plugin/src/ |
| D | memory_module.cpp | 33 static int MemPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in MemPluginReportResult() argument 37 return g_plugin->Report(bufferData, bufferSize); in MemPluginReportResult()
|
| /developtools/profiler/device/plugins/network_plugin/src/ |
| D | network_module.cpp | 34 static int NetworkPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in NetworkPluginReportResult() argument 40 return g_plugin->Report(bufferData, bufferSize); in NetworkPluginReportResult()
|
| /developtools/profiler/device/plugins/sample_plugin/src/ |
| D | sample_module.cpp | 35 static int SamplePluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in SamplePluginReportResult() argument 38 return g_plugin->Report(bufferData, bufferSize); in SamplePluginReportResult()
|
| /developtools/profiler/device/plugins/diskio_plugin/src/ |
| D | diskio_module.cpp | 33 static int DiskioPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in DiskioPluginReportResult() argument 37 return g_plugin->Report(bufferData, bufferSize); in DiskioPluginReportResult()
|
| /developtools/profiler/device/plugins/xpower_plugin/src/ |
| D | xpower_module.cpp | 38 static int XpowerPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in XpowerPluginReportResult() argument 44 return g_plugin->Report(bufferData, bufferSize); in XpowerPluginReportResult()
|
| /developtools/profiler/device/plugins/process_plugin/src/ |
| D | process_module.cpp | 34 static int ProcessPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in ProcessPluginReportResult() argument 40 return g_plugin->Report(bufferData, bufferSize); in ProcessPluginReportResult()
|
| /developtools/profiler/device/plugins/network_plugin/test/unittest/ |
| D | network_plugin_test.cpp | 111 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginStub() local 112 ret = plugin.Report(bufferData.data(), bufferData.size()); in PluginStub() 114 networkData.ParseFromArray(bufferData.data(), ret); in PluginStub()
|
| /developtools/profiler/device/plugins/process_plugin/test/unittest/ |
| D | process_plugin_unittest.cpp | 144 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginCpuinfoStub() local 146 bufferData.resize(1, 0); in PluginCpuinfoStub() 149 ret = processPlugin->Report(bufferData.data(), bufferData.size()); in PluginCpuinfoStub() 151 processData.ParseFromArray(bufferData.data(), ret); in PluginCpuinfoStub()
|
| /developtools/smartperf_host/trace_streamer/test/unittest/interface/ |
| D | split_file_data_test.cpp | 86 std::string bufferData(reinterpret_cast<char*>(&profilerHeader), sizeof(profilerHeader)); in CheckData() 94 std::copy(bufferData.begin(), bufferData.end(), combinedBuf.get()); in CheckData()
|
| /developtools/profiler/interfaces/kits/test/unittest/ |
| D | plugin_module_api_test.cpp | 71 static int MemPluginReportResult(uint8_t* bufferData, uint32_t bufferSize); 83 static int SamplePluginReportResult(uint8_t* bufferData, uint32_t bufferSize); 98 int PluginModuleApiTest::MemPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in MemPluginReportResult() argument 101 return memoryPlugin->Report(bufferData, bufferSize); in MemPluginReportResult() 158 int PluginModuleApiTest::SamplePluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in SamplePluginReportResult() argument 161 return samplePlugin->Report(bufferData, bufferSize); in SamplePluginReportResult()
|
| /developtools/profiler/interfaces/kits/ |
| D | plugin_module_api.h | 58 typedef int (*PluginReportResultCallback)(uint8_t* bufferData, uint32_t bufferSize);
|
| /developtools/profiler/device/plugins/cpu_plugin/test/unittest/ |
| D | cpu_data_plugin_unittest.cpp | 216 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginCpuinfoStub() local 218 bufferData.resize(1, 0); in PluginCpuinfoStub() 221 ret = cpuPlugin.Report(bufferData.data(), bufferData.size()); in PluginCpuinfoStub() 223 cpuData.ParseFromArray(bufferData.data(), ret); in PluginCpuinfoStub()
|
| /developtools/profiler/device/plugins/memory_plugin/test/unittest/ |
| D | memory_data_plugin_unittest.cpp | 471 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginStub() local 472 ret = memoryPlugin.Report(bufferData.data(), bufferData.size()); in PluginStub() 474 memoryData.ParseFromArray(bufferData.data(), ret); in PluginStub()
|
| /developtools/smartperf_host/trace_streamer/src/trace_data/ |
| D | sqllite_prepar_cache_data.cpp | 344 std::string bufferData; in SendDBProto() local 345 sphData.SerializeToString(&bufferData); in SendDBProto() 346 TLVResultCallBack(bufferData.data(), bufferData.size(), type, isFinish); in SendDBProto()
|
| /developtools/profiler/ |
| D | README_zh.md | 107 …a><a name="p240mcpsimp"></a>int (*PluginReportResultCallback)(uint8_t* bufferData, uint32_t buffer… 110 …339115211"><a name="p12796339115211"></a><a name="p12796339115211"></a>bufferData: 存放结果的内存缓冲区起始地址<… 272 int PluginReportResult(uint8_t* bufferData, uint32_t bufferSize)
|