/base/hiviewdfx/hiappevent/test/unittest/common/native/ |
H A D | hiappevent_userinfo_test.cpp | 45 HiAppEvent::UserInfo::GetInstance().RemoveUserId(TEST_USER_ID_NAME); in SetUp() 46 HiAppEvent::UserInfo::GetInstance().RemoveUserProperty(TEST_USER_PROP_NAME); in SetUp() 66 int ret = HiAppEvent::UserInfo::GetInstance().SetUserId(TEST_USER_ID_NAME, TEST_USER_ID_VALUE); in HWTEST_F() 71 int ret = HiAppEvent::UserInfo::GetInstance().GetUserId(TEST_USER_ID_NAME, strUserId); in HWTEST_F() 90 int ret = HiAppEvent::UserInfo::GetInstance().SetUserId(TEST_USER_ID_NAME, TEST_USER_ID_VALUE); in HWTEST_F() 95 int ret = HiAppEvent::UserInfo::GetInstance().GetUserId("", strUserId); in HWTEST_F() 114 int ret = HiAppEvent::UserInfo::GetInstance().SetUserId(TEST_USER_ID_NAME, TEST_USER_ID_VALUE); in HWTEST_F() 117 ret = HiAppEvent::UserInfo::GetInstance().SetUserId(TEST_USER_ID_NAME, "testUserId1"); in HWTEST_F() 122 int ret = HiAppEvent::UserInfo::GetInstance().GetUserId(TEST_USER_ID_NAME, strUserId); in HWTEST_F() 141 int ret = HiAppEvent in HWTEST_F() [all...] |
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/include/ |
H A D | app_event_observer_mgr.h | 32 namespace HiAppEvent {
namespace 35 using HiAppEvent::AppEventObserver;
36 using HiAppEvent::AppStateCallback;
37 using HiAppEvent::AppEventProcessor;
38 using HiAppEvent::ModuleLoader;
39 using HiAppEvent::ReportConfig;
|
H A D | app_event_watcher.h | 22 using HiAppEvent::AppEventObserver;
23 using HiAppEvent::TriggerCondition;
24 using HiAppEvent::AppEventFilter;
|
H A D | app_event_processor_proxy.h | 25 namespace HiAppEvent {
namespace 46 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/cj/ffi/include/ |
H A D | hiappevent_impl.h | 28 namespace HiAppEvent { namespace 34 static int64_t AddProcessor(const OHOS::HiviewDFX::HiAppEvent::ReportConfig& conf); 42 const std::vector<HiviewDFX::HiAppEvent::AppEventFilter>& filters, 43 const HiviewDFX::HiAppEvent::TriggerCondition& cond, 49 } // HiAppEvent
|
H A D | error.h | 23 namespace HiAppEvent { namespace 42 } // HiAppEvent
|
H A D | appevent_packageholder_impl.h | 27 namespace HiAppEvent { namespace 54 } // HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/ |
H A D | hiappevent_userinfo.h | 26 namespace HiAppEvent {
namespace 37 std::vector<HiAppEvent::UserId> GetUserIds();
38 std::vector<HiAppEvent::UserProperty> GetUserProperties();
55 } // namespace HiAppEvent
|
H A D | hiappevent_verify.h | 27 using HiAppEvent::ReportConfig;
28 using HiAppEvent::EventConfig;
|
H A D | hiappevent_common.h | 22 namespace HiAppEvent { namespace 34 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/ |
H A D | app_event_processor_proxy.cpp | 33 namespace HiAppEvent {
namespace 83 int64_t userIdVerForAll = HiAppEvent::UserInfo::GetInstance().GetUserIdVersion();
in GetValidUserIds() 88 std::vector<UserId> allUserIds = HiAppEvent::UserInfo::GetInstance().GetUserIds();
in GetValidUserIds() 101 int64_t userPropertyVerForAll = HiAppEvent::UserInfo::GetInstance().GetUserPropertyVersion();
in GetValidUserProperties() 106 std::vector<UserProperty> allUserProperties = HiAppEvent::UserInfo::GetInstance().GetUserProperties();
in GetValidUserProperties() 124 } // namespace HiAppEvent
|
H A D | app_state_callback.cpp | 21 namespace HiAppEvent {
namespace 26 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/js/napi/src/ |
H A D | napi_hiappevent_userinfo.cpp | 64 if (HiAppEvent::UserInfo::GetInstance().RemoveUserId(strName) != 0) {
in SetUserId() 80 if (HiAppEvent::UserInfo::GetInstance().SetUserId(strName, strUserId) != 0) {
in SetUserId() 100 if (HiAppEvent::UserInfo::GetInstance().GetUserId(strName, strUserId) != 0) {
in GetUserId() 121 if (HiAppEvent::UserInfo::GetInstance().RemoveUserProperty(strName) != 0) {
in SetUserProperty() 137 if (HiAppEvent::UserInfo::GetInstance().SetUserProperty(strName, strUserProperty) != 0) {
in SetUserProperty() 157 if (HiAppEvent::UserInfo::GetInstance().GetUserProperty(strName, strUserProperty) != 0) {
in GetUserProperty()
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/ |
H A D | hiappevent_userinfo.cpp | 34 namespace HiAppEvent {
namespace 188 std::vector<HiAppEvent::UserId> UserInfo::GetUserIds()
in GetUserIds() 191 std::vector<HiAppEvent::UserId> userIds;
in GetUserIds() 193 HiAppEvent::UserId userId;
in GetUserIds() 201 std::vector<HiAppEvent::UserProperty> UserInfo::GetUserProperties()
in GetUserProperties() 204 std::vector<HiAppEvent::UserProperty> userProperties;
in GetUserProperties() 206 HiAppEvent::UserProperty userProperty;
in GetUserProperties() 234 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/native/ndk/include/ |
H A D | ndk_app_event_processor.h | 39 HiAppEvent::ReportConfig GetConfig(); 41 HiAppEvent::ReportConfig config_;
|
H A D | ndk_app_event_watcher.h | 38 void OnTrigger(const HiAppEvent::TriggerCondition& triggerCond) override;
|
/base/hiviewdfx/hiappevent/frameworks/native/ndk/src/ |
H A D | ndk_app_event_watcher.cpp | 36 reportConfig_.triggerCond = {row, size, timeOut * HiAppEvent::TIMEOUT_STEP}; in SetTriggerCondition() 46 HiAppEvent::AppEventFilter filter{domain, types}; in AddAppEventFilter() 110 void NdkAppEventWatcher::OnTrigger(const HiAppEvent::TriggerCondition &triggerCond) in OnTrigger()
|
/base/hiviewdfx/hiappevent/test/processor/ |
H A D | test_init.cpp | 29 using namespace OHOS::HiviewDFX::HiAppEvent;
|
H A D | test_processor.h | 22 namespace HiAppEvent {
namespace 33 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/cj/ffi/src/ |
H A D | error.cpp | 21 namespace HiAppEvent { namespace 42 } // HiAppEvent
|
/base/hiviewdfx/hiappevent/interfaces/native/inner_api/include/ |
H A D | app_event_processor.h | 24 namespace HiAppEvent {
namespace 47 } // namespace HiAppEvent
|
H A D | app_event_processor_mgr.h | 24 namespace HiAppEvent {
namespace 38 } // namespace HiAppEvent
|
H A D | base_type.h | 25 namespace HiAppEvent {
namespace 105 } // namespace HiAppEvent
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/load/include/ |
H A D | module_loader.h | 26 namespace HiAppEvent {
namespace 49 } // namespace HiAppEvent
|
/base/hiviewdfx/hiview/base/event_publish/include/ |
H A D | event_publish.h | 29 namespace HiAppEvent { namespace 41 } // namespace HiAppEvent
|