Home
last modified time | relevance | path

Searched refs:ICollectPlugin (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/
H A Dicollect_plugin.cpp19 ICollectPlugin::ICollectPlugin(const sptr<IReport>& report) : report_(report) in ICollectPlugin() function in OHOS::ICollectPlugin
23 void ICollectPlugin::ReportEvent(const OnDemandEvent& event) in ReportEvent()
30 void ICollectPlugin::PostDelayTask(std::function<void()> callback, int32_t delayTime) in PostDelayTask()
H A Ddevice_status_collect_manager.cpp43 sptr<ICollectPlugin> deviceParamCollect = new DeviceParamCollect(this); in Init()
47 sptr<ICollectPlugin> networkingCollect = new DeviceNetworkingCollect(this); in Init()
51 sptr<ICollectPlugin> eventStatuscollect = new CommonEventCollect(this); in Init()
56 sptr<ICollectPlugin> deviceSwitchCollect = new DeviceSwitchCollect(this); in Init()
60 sptr<ICollectPlugin> timedCollect = new DeviceTimedCollect(this); in Init()
H A Ddevice_param_collect.cpp42 : ICollectPlugin(report) in DeviceParamCollect()
H A Ddevice_switch_collect.cpp40 : ICollectPlugin(report) in DeviceSwitchCollect()
H A Ddevice_networking_collect.cpp36 : ICollectPlugin(report) in DeviceNetworkingCollect()
H A Ddevice_timed_collect.cpp43 : ICollectPlugin(report) in DeviceTimedCollect()
H A Dcommon_event_collect.cpp49 : ICollectPlugin(report) in CommonEventCollect()
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/include/collect/
H A Dicollect_plugin.h28 class ICollectPlugin : public virtual RefBase {
30 explicit ICollectPlugin(const sptr<IReport>& report);
31 virtual ~ICollectPlugin() = default;
H A Ddevice_networking_collect.h29 explicit DeviceStateCallback(const sptr<ICollectPlugin>& collect) : collect_(collect) {} in DeviceStateCallback()
39 sptr<ICollectPlugin> collect_;
54 class DeviceNetworkingCollect : public ICollectPlugin {
H A Ddevice_param_collect.h25 class DeviceParamCollect : public ICollectPlugin {
H A Ddevice_switch_collect.h57 class DeviceSwitchCollect : public ICollectPlugin {
H A Ddevice_timed_collect.h32 class DeviceTimedCollect : public ICollectPlugin {
H A Ddevice_status_collect_manager.h72 std::map<int32_t, sptr<ICollectPlugin>> collectPluginMap_;
H A Dcommon_event_collect.h29 class CommonEventCollect : public ICollectPlugin {
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/include/
H A Ddevice_status_collect_manager_test.h39 class MockCollectPlugin : public ICollectPlugin {
41 explicit MockCollectPlugin(const sptr<IReport>& report) : ICollectPlugin(report) {}; in MockCollectPlugin()
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Ddevice_status_collect_manager_test.cpp207 sptr<ICollectPlugin> networkingCollect = new DeviceNetworkingCollect(nullptr);