Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/ability_runtime/services/common/src/
H A Dres_sched_util.cpp56 std::unordered_map<std::string, std::string> eventParams { in ReportAbilityStartInfoToRSS() local
64 …ourceSchedule::ResSchedClient::GetInstance().ReportData(resType, isColdStart ? 1 : 0, eventParams); in ReportAbilityStartInfoToRSS()
73 std::unordered_map<std::string, std::string> eventParams { in ReportAbilityAssociatedStartInfoToRSS() local
82 ResourceSchedule::ResSchedClient::GetInstance().ReportData(resType, type, eventParams); in ReportAbilityAssociatedStartInfoToRSS()
179 std::unordered_map<std::string, std::string> eventParams { in ReportLoadingEventToRss() local
185 eventParams.emplace("timeoutDuration", std::to_string(timeDuration)); in ReportLoadingEventToRss()
188 eventParams.emplace("abilityRecordId", std::to_string(abilityRecordId)); in ReportLoadingEventToRss()
193 ResourceSchedule::ResSchedClient::GetInstance().ReportData(resType, type, eventParams); in ReportLoadingEventToRss()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-performance-analysis-kit/
H A Djs-apis-hiappevent.md70 let eventParams: Record<string, number | string> = {
74 hiAppEvent.write("test_event", hiAppEvent.EventType.FAULT, eventParams, (err: BusinessError) => {
113 let eventParams: Record<string, number | string> = {
117 hiAppEvent.write("test_event", hiAppEvent.EventType.FAULT, eventParams).then(() => {
H A Djs-apis-hiviewdfx-hiappevent.md174 let eventParams: Record<string, number | string> = {
182 params: eventParams,
235 let eventParams: Record<string, number | string> = {
243 params: eventParams,
/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/event/src/
H A Dsoftbus_event.c34 static void ConstructHiSysEventParams(HiSysEventParam *eventParams, const HiSysEventParam *params, … in ConstructHiSysEventParams() argument
39 eventParams[index++] = params[i]; in ConstructHiSysEventParams()
42 eventParams[index++] = extraParams[j]; in ConstructHiSysEventParams()
50 HiSysEventParam eventParams[validParamSize]; in WriteHiSysEvent() local
51 ConstructHiSysEventParams(eventParams, params, size, extraParams, extraSize); in WriteHiSysEvent()
53 …form->func, form->line, form->domain, form->eventName, form->eventType, eventParams, validParamSiz… in WriteHiSysEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/recorder/
H A Devent_controller.h42 const std::shared_ptr<std::unordered_map<std::string, std::string>>& eventParams);
45 const std::shared_ptr<std::unordered_map<std::string, std::string>>& eventParams);
H A Devent_controller.cpp209 const std::shared_ptr<std::unordered_map<std::string, std::string>>& eventParams) in NotifyEvent() argument
217 BackgroundTaskExecutor::GetInstance().PostTask([category, eventType, eventParams]() { in NotifyEvent()
218 EventController::Get().NotifyEventSync(category, eventType, eventParams); in NotifyEvent()
223 const std::shared_ptr<std::unordered_map<std::string, std::string>>& eventParams) in NotifyEventSync() argument
228 client.observer->NotifyUIEvent(eventType, *eventParams); in NotifyEventSync()
/ohos5.0/base/hiviewdfx/hiappevent/test/unittest/common/native/
H A Dhiappevent_cache_test.cpp263 auto eventParams = CreateAppEventPack(); variable
264 eventParams->SetRunningId(TEST_RUNNING_ID);
265 eventParams->AddParam("custom_data", "value_str");
266 int64_t ret = AppEventStore::GetInstance().InsertCustomEventParams(eventParams);
/ohos5.0/docs/zh-cn/application-dev/dfx/
H A Dhiappevent-watcher-app-events-arkts.md78 let eventParams: Record<string, number> = { 'click_time': 100 };
87 params: eventParams,
H A Dhitracechain-guidelines-arkts.md51 let eventParams: Record<string, number> = { 'click_time': 100 }
60 params: eventParams,
H A Dhiappevent-event-reporting.md114 let eventParams: Record<string, number> = { 'click_time': 100 };
123 params: eventParams,
/ohos5.0/foundation/arkui/ace_engine/interfaces/inner_api/ace/
H A Dui_event_observer.h28 …ifyUIEvent(int32_t eventType, const std::unordered_map<std::string, std::string>& eventParams) = 0;
/ohos5.0/docs/en/application-dev/reference/apis-performance-analysis-kit/
H A Djs-apis-hiappevent.md70 let eventParams: Record<string, number | string> = {
74 hiAppEvent.write("test_event", hiAppEvent.EventType.FAULT, eventParams, (err: BusinessError) => {
113 let eventParams: Record<string, number | string> = {
117 hiAppEvent.write("test_event", hiAppEvent.EventType.FAULT, eventParams).then(() => {
H A Djs-apis-hiviewdfx-hiappevent.md174 let eventParams: Record<string, number | string> = {
182 params: eventParams,
235 let eventParams: Record<string, number | string> = {
243 params: eventParams,
/ohos5.0/docs/en/application-dev/dfx/
H A Dhiappevent-event-reporting.md114 let eventParams: Record<string, number> = { 'click_time': 100 };
123 params: eventParams,
H A Dhiappevent-watcher-app-events-arkts.md78 let eventParams: Record<string, number> = { 'click_time': 100 };
87 params: eventParams,
H A Dhitracechain-guidelines-arkts.md51 let eventParams: Record<string, number> = { 'click_time': 100 }
60 params: eventParams,
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/common/recorder/
H A Devent_recorder_test.cpp46 …d NotifyUIEvent(int32_t eventType, const std::unordered_map<std::string, std::string>& eventParams) in NotifyUIEvent() argument