Home
last modified time | relevance | path

Searched refs:ProfileChangeNotification (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/deviceprofile/device_info_manager/old/services/core/test/fuzztest/profilechangenotification_fuzzer/
H A Dprofilechangenotification_fuzzer.cpp35 std::shared_ptr<ProfileChangeNotification> profileNotification = in GetProfileEntriesFuzzTest()
36 std::make_shared<ProfileChangeNotification>(); in GetProfileEntriesFuzzTest()
45 std::shared_ptr<ProfileChangeNotification> profileNotification = in GetDeviceIdFuzzTest()
46 std::make_shared<ProfileChangeNotification>(); in GetDeviceIdFuzzTest()
56 std::shared_ptr<ProfileChangeNotification> profileNotification = in MarshallingFuzzTest()
57 std::make_shared<ProfileChangeNotification>(); in MarshallingFuzzTest()
67 std::shared_ptr<ProfileChangeNotification> profileNotification = in UnmarshallingFuzzTest()
68 std::make_shared<ProfileChangeNotification>(); in UnmarshallingFuzzTest()
/ohos5.0/foundation/deviceprofile/device_info_manager/old/services/core/test/unittest/
H A Dprofile_change_notification_test.cpp79 ProfileChangeNotification notification;
95 ProfileChangeNotification notification(profileEntries, networkId, isLocal);
111 std::shared_ptr<ProfileChangeNotification> temp =
125 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
139 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
156 ProfileChangeNotification notification(profileEntries, networkId, isLocal);
171 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
186 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
201 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
221 std::shared_ptr<ProfileChangeNotification> temp = std::make_shared<ProfileChangeNotification>();
[all …]
H A Dprofile_change_handler_test.cpp205 ProfileChangeNotification profileNotification;
225 ProfileChangeNotification profileNotification;
246 ProfileChangeNotification profileNotification;
267 ProfileChangeNotification profileNotification;
288 ProfileChangeNotification profileNotification;
305 ProfileChangeNotification profileNotification;
322 ProfileChangeNotification profileNotification;
343 ProfileChangeNotification profileNotification(entries, networkId, true);
374 ProfileChangeNotification profileNotification;
H A Dprofile_event_notifier_proxy_test.cpp108 ProfileChangeNotification notification;
H A Dprofile_proxy_test.cpp120 ProfileChangeNotification changeNotification;
H A Devent_subscribe_test.cpp69 void OnProfileChanged(const ProfileChangeNotification& changeNotification) override in OnProfileChanged()
H A Dprofile_crud_test.cpp86 void OnProfileChanged(const ProfileChangeNotification& changeNotification) override in OnProfileChanged()
/ohos5.0/foundation/deviceprofile/device_info_manager/old/services/core/src/
H A Dprofile_change_notification.cpp34 const std::vector<ProfileEntry>& ProfileChangeNotification::GetProfileEntries() const in GetProfileEntries()
39 const std::string& ProfileChangeNotification::GetDeviceId() const in GetDeviceId()
44 bool ProfileChangeNotification::IsLocal() const in IsLocal()
49 bool ProfileChangeNotification::Marshalling(Parcel& parcel) const in Marshalling()
63 bool ProfileChangeNotification::Unmarshalling(Parcel& parcel) in Unmarshalling()
/ohos5.0/foundation/deviceprofile/device_info_manager/old/interfaces/innerkits/core/include/
H A Dprofile_change_notification.h50 class ProfileChangeNotification : public Parcelable {
52 ProfileChangeNotification(std::vector<ProfileEntry>& profileEntries, in ProfileChangeNotification() function
56 ProfileChangeNotification() {} in ProfileChangeNotification() function
57 ~ProfileChangeNotification() = default;
H A Diprofile_event_callback.h37 virtual void OnProfileChanged(const ProfileChangeNotification& changeNotification) {} in OnProfileChanged()
/ohos5.0/foundation/deviceprofile/device_info_manager/old/services/core/include/subscribemanager/
H A Dprofile_change_handler.h47 void NotifyProfileChanged(const ProfileChangeNotification& changeNotification,
50 const ProfileChangeNotification& changeNotification,
52 void NotifyProfileChangedLocked(const ProfileChangeNotification& changeNotification,
H A Dprofile_event_notifier_proxy.h30 void OnProfileChanged(const ProfileChangeNotification& changeNotification) override;
/ohos5.0/foundation/deviceprofile/device_info_manager/old/services/core/src/subscribemanager/
H A Dprofile_change_handler.cpp121 ProfileChangeNotification notification(profileEntries, networkId, localUdid == udid); in OnChange()
153 void ProfileChangeHandler::NotifyProfileChanged(const ProfileChangeNotification& changeNotification, in NotifyProfileChanged()
182 void ProfileChangeHandler::NotifyProfileChangedLocked(const ProfileChangeNotification& changeNotifi… in NotifyProfileChangedLocked()
211 ProfileChangeNotification filteredNotification(filteredEntries, deviceId, isLocal); in NotifyProfileChangedLocked()
216 const ProfileChangeNotification& changeNotification, in FilterChangedProfileLocked()
H A Dprofile_event_notifier_proxy.cpp59 void ProfileEventNotifierProxy::OnProfileChanged(const ProfileChangeNotification& changeNotificatio… in OnProfileChanged()
/ohos5.0/foundation/deviceprofile/device_info_manager/old/tools/dp/include/
H A Ddp_command.h60 void OnProfileChanged(const ProfileChangeNotification& changeNotification) override;
/ohos5.0/foundation/deviceprofile/device_info_manager/old/interfaces/innerkits/core/src/
H A Dprofile_event_notifier_stub.cpp93 ProfileChangeNotification changeNotification;
/ohos5.0/foundation/deviceprofile/device_info_manager/old/tools/dp/src/
H A Ddp_command.cpp473 void ProfileEventCallback::OnProfileChanged(const ProfileChangeNotification& changeNotification) in OnProfileChanged()