/developtools/profiler/device/plugins/cpu_plugin/src/ |
D | cpu_module.cpp | 34 static int CpuPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in CpuPluginReportResult() argument 38 return g_plugin->Report(bufferData, bufferSize); in CpuPluginReportResult()
|
/developtools/profiler/device/plugins/diskio_plugin/src/ |
D | diskio_module.cpp | 34 static int DiskioPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in DiskioPluginReportResult() argument 38 return g_plugin->Report(bufferData, bufferSize); in DiskioPluginReportResult()
|
/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/memory_plugin/src/ |
D | memory_module.cpp | 34 static int MemPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in MemPluginReportResult() argument 38 return g_plugin->Report(bufferData, bufferSize); in MemPluginReportResult()
|
/developtools/profiler/device/plugins/network_plugin/src/ |
D | network_module.cpp | 35 static int NetworkPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in NetworkPluginReportResult() argument 41 return g_plugin->Report(bufferData, bufferSize); in NetworkPluginReportResult()
|
/developtools/profiler/device/plugins/process_plugin/src/ |
D | process_module.cpp | 35 static int ProcessPluginReportResult(uint8_t* bufferData, uint32_t bufferSize) in ProcessPluginReportResult() argument 41 return g_plugin->Report(bufferData, bufferSize); in ProcessPluginReportResult()
|
/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/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/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/memory_plugin/test/unittest/ |
D | memory_data_plugin_unittest.cpp | 187 std::vector<uint8_t> bufferData(BUF_SIZE); in PluginStub() local 188 ret = memoryPlugin.Report(bufferData.data(), bufferData.size()); in PluginStub() 190 memoryData.ParseFromArray(bufferData.data(), ret); in PluginStub()
|
/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/ |
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)
|