Home
last modified time | relevance | path

Searched refs:SetUserProperty (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/hiviewdfx/hiappevent/test/unittest/common/native/
H A Dhiappevent_userinfo_test.cpp168 …int ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, TEST_USER_PROP_…
192 …int ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, TEST_USER_PROP_…
216 …int ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, TEST_USER_PROP_…
219 …ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, "testUserProperty1"…
243 …int ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, TEST_USER_PROP_…
246 ret = HiAppEvent::UserInfo::GetInstance().SetUserProperty(TEST_USER_PROP_NAME, "");
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/js/napi/src/
H A Dnapi_hiappevent_js_v9.cpp151 static napi_value SetUserProperty(napi_env env, napi_callback_info info) in SetUserProperty() function
158 if (!NapiHiAppEventUserInfo::SetUserProperty(env, params[0], params[1])) { in SetUserProperty()
248 DECLARE_NAPI_FUNCTION("setUserProperty", SetUserProperty), in Init()
H A Dnapi_hiappevent_userinfo.cpp108 bool SetUserProperty(const napi_env env, const napi_value name, const napi_value userProperty) in SetUserProperty() function
137 if (HiAppEvent::UserInfo::GetInstance().SetUserProperty(strName, strUserProperty) != 0) { in SetUserProperty()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/js/napi/include/
H A Dnapi_hiappevent_userinfo.h26 bool SetUserProperty(const napi_env env, const napi_value name, const napi_value userProperty);
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/cj/ffi/src/
H A Dhiappevent_impl.cpp181 int HiAppEventImpl::SetUserProperty(const std::string& name, const std::string& value) in SetUserProperty() function in OHOS::CJSystemapi::HiAppEvent::HiAppEventImpl
190 if (UserInfo::GetInstance().SetUserProperty(name, value) != 0) { in SetUserProperty()
H A Dhiappevent_ffi.cpp280 int res = HiAppEventImpl::SetUserProperty(std::string(name), std::string(value)); in FfiOHOSHiAppEventSetUserProperty()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
H A Dhiappevent_userinfo.h34 int SetUserProperty(const std::string& name, const std::string& value);
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/cj/ffi/include/
H A Dhiappevent_impl.h38 static int SetUserProperty(const std::string& name, const std::string& value);
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
H A Dhiappevent_userinfo.cpp112 int UserInfo::SetUserProperty(const std::string& name, const std::string& value) in SetUserProperty() function in OHOS::HiviewDFX::HiAppEvent::UserInfo