Searched refs:onRegisterWriterStruct (Results 1 – 25 of 27) sorted by relevance
12
| /developtools/profiler/interfaces/kits/test/unittest/ |
| D | plugin_module_api_test.cpp | 210 EXPECT_NE(streamCallbacks_->onRegisterWriterStruct, nullptr); 211 EXPECT_EQ(streamCallbacks_->onRegisterWriterStruct(writer_), 0); 228 EXPECT_NE(streamCallbacks_->onRegisterWriterStruct, nullptr); 234 EXPECT_EQ(streamCallbacks_->onRegisterWriterStruct(writer_), 0); 252 EXPECT_NE(streamCallbacks_->onRegisterWriterStruct, nullptr); 258 EXPECT_EQ(streamCallbacks_->onRegisterWriterStruct(writer_), 0); 277 EXPECT_EQ(sampleCallbacks_->onRegisterWriterStruct, nullptr); 291 EXPECT_EQ(memoryCallbacks_->onRegisterWriterStruct, nullptr); 306 EXPECT_NE(streamCallbacks_->onRegisterWriterStruct, nullptr); 312 streamCallbacks_->onRegisterWriterStruct(writer_); [all …]
|
| /developtools/profiler/device/plugins/api/src/ |
| D | plugin_module.cpp | 84 } else if (structPtr_->callbacks->onRegisterWriterStruct != nullptr) { in GetSampleMode() 302 if (structPtr_->callbacks->onRegisterWriterStruct != nullptr) { in RegisterWriter() 303 return structPtr_->callbacks->onRegisterWriterStruct(writerAdapter_->GetStruct()); in RegisterWriter()
|
| /developtools/profiler/device/plugins/stream_plugin/src/ |
| D | stream_module.cpp | 53 .onRegisterWriterStruct = (RegisterWriterStructCallback)StreamRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/arkts_plugin/src/ |
| D | arkts_module.cpp | 55 .onRegisterWriterStruct = (RegisterWriterStructCallback)ArkTSPluginRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/hidump_plugin/src/ |
| D | hidump_module.cpp | 55 .onRegisterWriterStruct = (RegisterWriterStructCallback)HidumpRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/hilog_plugin/src/ |
| D | hilog_module.cpp | 56 .onRegisterWriterStruct = (RegisterWriterStructCallback)HilogPluginRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/hisysevent_plugin/src/ |
| D | hisysevent_module.cpp | 54 .onRegisterWriterStruct = (RegisterWriterStructCallback)HisyseventRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/sample_plugin/src/ |
| D | sample_module.cpp | 64 .onRegisterWriterStruct = SampleRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/network_plugin/src/ |
| D | network_module.cpp | 66 .onRegisterWriterStruct = NetworkRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/xpower_plugin/src/ |
| D | xpower_module.cpp | 67 .onRegisterWriterStruct = (RegisterWriterStructCallback)XpowerRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/process_plugin/src/ |
| D | process_module.cpp | 67 .onRegisterWriterStruct = ProcessRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/memory_plugin/src/ |
| D | memory_module.cpp | 64 .onRegisterWriterStruct = MemRegisterWriterStruct,
|
| /developtools/profiler/interfaces/kits/ |
| D | plugin_module_api.h | 221 RegisterWriterStructCallback onRegisterWriterStruct; member
|
| /developtools/profiler/device/plugins/ftrace_plugin/src/ |
| D | ftrace_module.cpp | 84 .onRegisterWriterStruct = TracePluginRegisterWriter,
|
| /developtools/profiler/device/plugins/hiebpf_plugin/src/ |
| D | hiebpf_module.cpp | 122 .onRegisterWriterStruct = nullptr,
|
| /developtools/profiler/device/plugins/bytrace_plugin/src/ |
| D | bytrace_module.cpp | 164 .onRegisterWriterStruct = BytraceRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/xpower_plugin/test/unittest/ |
| D | xpower_plugin_unittest.cpp | 95 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/device/plugins/hiperf_plugin/src/ |
| D | hiperf_module.cpp | 181 .onRegisterWriterStruct = HiperfRegisterWriterStruct,
|
| /developtools/profiler/device/plugins/api/test/unittest/ |
| D | plugin_manager_test.cpp | 132 } else if (pluginModule.structPtr_->callbacks->onRegisterWriterStruct != nullptr) {
|
| /developtools/profiler/device/plugins/hiperf_plugin/test/unittest/ |
| D | hiperf_plugin_unittest.cpp | 87 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/device/plugins/hisysevent_plugin/test/unittest/ |
| D | hisysevent_plugin_unittest.cpp | 149 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/device/plugins/hidump_plugin/test/unittest/ |
| D | hidump_plugin_unittest.cpp | 103 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/device/plugins/network_plugin/test/unittest/ |
| D | network_plugin_test.cpp | 267 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/device/plugins/ftrace_plugin/test/unittest/ |
| D | flow_controller_test.cpp | 299 EXPECT_EQ(plugin->callbacks->onRegisterWriterStruct(&writer), 0);
|
| /developtools/profiler/ |
| D | README_zh.md | 128 … name="p252mcpsimp"></a><a name="p252mcpsimp"></a>PluginModuleCallbacks::onRegisterWriterStruct</p> 142 - WriterStruct是上面onRegisterWriterStruct接口中的参数,主要实现写数据接口,将插件中采集的数据通过该接口进行写入。
|
12