Home
last modified time | relevance | path

Searched refs:bufferData (Results 1 – 14 of 14) sorted by relevance

/developtools/profiler/device/plugins/cpu_plugin/src/
Dcpu_module.cpp34 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/
Ddiskio_module.cpp34 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/
Dsample_module.cpp35 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/
Dmemory_module.cpp34 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/
Dnetwork_module.cpp35 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/
Dprocess_module.cpp35 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/
Ddiskio_data_plugin_unittest.cpp101 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/
Dnetwork_plugin_test.cpp111 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/
Dprocess_plugin_unittest.cpp144 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/
Dplugin_module_api_test.cpp71 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/
Dplugin_module_api.h58 typedef int (*PluginReportResultCallback)(uint8_t* bufferData, uint32_t bufferSize);
/developtools/profiler/device/plugins/memory_plugin/test/unittest/
Dmemory_data_plugin_unittest.cpp187 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/
Dcpu_data_plugin_unittest.cpp216 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/
DREADME_zh.md107 …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)