Home
last modified time | relevance | path

Searched refs:sceneId (Results 1 - 25 of 50) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/base/perfmonitor/
H A Dperf_monitor.cpp108 dataRs.sceneId = data.sceneId; in ConvertToRsData()
132 ACE_SCOPED_TRACE("EVENT_REPORT_RESPONSE_RS sceneId = %s, uniqueId = %lld", in ReportPerfEventToRS()
133 dataRs.sceneId.c_str(), static_cast<long long> (dataRs.uniqueId)); in ReportPerfEventToRS()
140 ACE_SCOPED_TRACE("EVENT_REPORT_COMPLETE_RS sceneId = %s, uniqueId = %lld", in ReportPerfEventToRS()
141 dataRs.sceneId.c_str(), static_cast<long long> (dataRs.uniqueId)); in ReportPerfEventToRS()
148 ACE_SCOPED_TRACE("EVENT_REPORT_JANK_RS sceneId = %s, uniqueId = %lld", in ReportPerfEventToRS()
149 dataRs.sceneId.c_str(), static_cast<long long> (dataRs.uniqueId)); in ReportPerfEventToRS()
179 sceneId = sId; in InitRecord()
185 isDisplayAnimator = IsDisplayAnimator(sceneId); in InitRecord()
228 Report(const std::string& sceneId, int64_t vsyncTime, bool isRsRender) Report() argument
243 IsDisplayAnimator(const std::string& sceneId) IsDisplayAnimator() argument
284 Start(const std::string& sceneId, PerfActionType type, const std::string& note) Start() argument
307 End(const std::string& sceneId, bool isRsRender) End() argument
433 GetRecord(const std::string& sceneId) GetRecord() argument
442 RemoveRecord(const std::string& sceneId) RemoveRecord() argument
453 GetInputTime(const std::string& sceneId, PerfActionType type, const std::string& note) GetInputTime() argument
476 ReportAnimateStart(const std::string& sceneId, SceneRecord* record) ReportAnimateStart() argument
486 ReportAnimateEnd(const std::string& sceneId, SceneRecord* record) ReportAnimateEnd() argument
545 IsExceptResponseTime(int64_t time, const std::string& sceneId) IsExceptResponseTime() argument
651 IsSceneIdInSceneWhiteList(const std::string& sceneId) IsSceneIdInSceneWhiteList() argument
666 CheckTimeOutOfExceptAnimatorStatus(const std::string& sceneId) CheckTimeOutOfExceptAnimatorStatus() argument
[all...]
H A Dperf_monitor.h72 std::string sceneId {""};
94 std::string sceneId {""};
108 void Report(const std::string& sceneId, int64_t vsyncTime, bool isRsRender);
111 bool IsDisplayAnimator(const std::string& sceneId);
129 std::string sceneId {""};
137 void Start(const std::string& sceneId, PerfActionType type, const std::string& note);
138 void End(const std::string& sceneId, bool isRsRender);
140 int64_t GetInputTime(const std::string& sceneId, PerfActionType type, const std::string& note);
158 SceneRecord* GetRecord(const std::string& sceneId);
159 void RemoveRecord(const std::string& sceneId);
[all...]
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/hgm_screen_manager/
H A Dhgm_screen.cpp55 int32_t HgmScreen::SetActiveRefreshRate(int32_t sceneId, uint32_t rate) in SetActiveRefreshRate() argument
64 if (!IfSwitchToRate(sceneId, rate)) { in SetActiveRefreshRate()
75 int32_t HgmScreen::SetRateAndResolution(int32_t sceneId, uint32_t rate, int32_t width, int32_t height) in SetRateAndResolution() argument
77 if (!IfSwitchToRate(sceneId, rate)) { in SetRateAndResolution()
131 bool HgmScreen::IfSwitchToRate(int32_t sceneId, uint32_t rate) const in IfSwitchToRate() argument
138 if (sceneId == SWITCH_SCREEN_SCENE) { in IfSwitchToRate()
H A Dhgm_screen.h110 int32_t SetActiveRefreshRate(int32_t sceneId, uint32_t rate);
111 int32_t SetRateAndResolution(int32_t sceneId, uint32_t rate, int32_t width, int32_t height);
176 bool IfSwitchToRate(int32_t sceneId, uint32_t rate) const;
H A Dhgm_core.h184 int32_t SetScreenRefreshRate(ScreenId id, int32_t sceneId, int32_t rate);
185 static int32_t SetRateAndResolution(ScreenId id, int32_t sceneId, int32_t rate, int32_t width, int32_t height);
H A Dhgm_core.cpp274 int32_t HgmCore::SetScreenRefreshRate(ScreenId id, int32_t sceneId, int32_t rate) in SetScreenRefreshRate() argument
295 int32_t modeToSwitch = screen->SetActiveRefreshRate(sceneId, static_cast<uint32_t>(rate)); in SetScreenRefreshRate()
318 int32_t HgmCore::SetRateAndResolution(ScreenId id, int32_t sceneId, int32_t rate, int32_t width, int32_t height) in SetRateAndResolution() argument
/foundation/arkui/ace_engine/interfaces/napi/kits/performancemonitor/
H A Dnapi_perf_monitor.cpp105 static void SceneStart(std::string sceneId, int type, std::string note) in SceneStart() argument
109 pMonitor->Start(sceneId, static_cast<PerfActionType>(type), note); in SceneStart()
113 static void SceneEnd(std::string sceneId, bool isJsApi) in SceneEnd() argument
117 pMonitor->End(sceneId, isJsApi); in SceneEnd()
139 std::string sceneId = ""; in JSSceneStart() local
140 if (!ParseStringParam(env, argv[FIRST_ARG_INDEX], sceneId)) { in JSSceneStart()
153 SceneStart(sceneId, inputType, note); in JSSceneStart()
167 std::string sceneId = ""; in JSSceneEnd() local
168 if (!ParseStringParam(env, argv[FIRST_ARG_INDEX], sceneId)) { in JSSceneEnd()
171 SceneEnd(sceneId, tru in JSSceneEnd()
[all...]
/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_jank_frame_report.cpp45 void PerfMonitor::Start(const std::string& sceneId, PerfActionType type, const std::string& note) {} in Start() argument
47 void PerfMonitor::End(const std::string& sceneId, bool isJsApi) {} in End() argument
57 int64_t PerfMonitor::GetInputTime(const std::string& sceneId, PerfActionType type, const std::string& note) in GetInputTime() argument
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Devent_report.cpp373 const auto& sceneId = data.sceneId; in ReportEventComplete() local
391 EVENT_KEY_SCENE_ID, sceneId, in ReportEventComplete()
398 ACE_SCOPED_TRACE("INTERACTION_COMPLETED_LATENCY: sceneId =%s, inputTime=%lld(ms)," in ReportEventComplete()
399 "e2eLatency=%lld(ms)", sceneId.c_str(), in ReportEventComplete()
422 const auto& sceneId = data.sceneId; in ReportEventJankFrame() local
441 EVENT_KEY_SCENE_ID, sceneId, in ReportEventJankFrame()
460 ACE_SCOPED_TRACE("INTERACTION_APP_JANK: sceneId =%s, startTime=%lld(ms)," in ReportEventJankFrame()
461 "maxFrameTime=%lld(ms)", sceneId in ReportEventJankFrame()
536 const auto& sceneId = info.sceneId; ReportJankFrameUnFiltered() local
[all...]
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/scene/mock/
H A Dmock_sharing_adapter.h32 MOCK_METHOD(void, ReleaseScene, (uint32_t sceneId));
33 MOCK_METHOD(void, OnSceneNotifyDestroyed, (uint32_t sceneId));
/foundation/CastEngine/castengine_wifi_display/services/interaction/
H A Dsharing_adapter.h31 * @param sceneId Indicates the scene ID.
33 virtual void ReleaseScene(uint32_t sceneId) = 0;
34 virtual void OnSceneNotifyDestroyed(uint32_t sceneId) = 0;
H A Dinteraction.h87 void ReleaseScene(uint32_t sceneId) override;
88 void OnSceneNotifyDestroyed(uint32_t sceneId) override;
H A Dinteraction.cpp63 void Interaction::ReleaseScene(uint32_t sceneId) in ReleaseScene() argument
77 void Interaction::OnSceneNotifyDestroyed(uint32_t sceneId) in OnSceneNotifyDestroyed() argument
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Devent_report.h138 int32_t sceneId = 0; member
188 sceneId = 0; in Reset()
277 static void SendCpuSceneEvent(const std::string &processName, const int32_t sceneId);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Devent_report.cpp165 void EventReport::SendCpuSceneEvent(const std::string &processName, const int32_t sceneId) in SendCpuSceneEvent() argument
168 eventInfo.sceneId = sceneId; in SendCpuSceneEvent()
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_event_report.h31 std::string sceneId; member
/foundation/ability/form_fwk/test/unittest/frs_form_render_event_report_test/
H A Dfrs_form_render_event_report_test.cpp60 eventInfo.sceneId = "1"; in HWTEST_F()
/foundation/ability/form_fwk/services/form_render_service/src/
H A Dform_render_event_report.cpp51 "SCENE_ID", eventInfo.sceneId, in SendPerformanceEvent()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_scan/Mock/
H A Dmock_scan_service_new.cpp309 void ScanService::AddScanTrustSceneId(int sceneId) in AddScanTrustSceneId() argument
317 bool ScanService::IsInScanTrust(int sceneId) const in IsInScanTrust()
491 bool ScanService::IsPackageInTrustList(const std::string &trustList, int sceneId, in IsPackageInTrustList() argument
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_scan/
H A Dscan_service.h543 * @param sceneId - current scene id[out].
551 * @param sceneId - scene id.
553 void AddScanTrustSceneId(int sceneId);
560 * @Description Is sceneId in trust list.
562 * @param sceneId - scene id.
564 bool IsInScanTrust(int sceneId) const;
823 * @param sceneId scene id[in]
827 bool IsPackageInTrustList(const std::string& trustList, int sceneId, const std::string &appPackageName) const;
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/include/
H A Dwifi_internal_msg.h308 int sceneId = 0; /* scene id */ member
314 sceneId = 0; in TrustListPolicy()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_jank_stats.cpp469 OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR, "SCENE_ID", info.sceneId, "APP_PID", info.appPid, in ReportEventResponse()
492 "PROCESS_NAME", info.processName, "PAGE_URL", info.pageUrl, "SCENE_ID", info.sceneId, in ReportEventComplete()
514 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "UNIQUE_ID", info.uniqueId, "SCENE_ID", info.sceneId, in ReportEventJankFrame()
536 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "UNIQUE_ID", info.uniqueId, "SCENE_ID", info.sceneId, in ReportEventJankFrame()
596 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "UNIQUE_ID", info.uniqueId, "SCENE_ID", info.sceneId, in ReportEventHitchTimeRatio()
613 OHOS::HiviewDFX::HiSysEvent::EventType::STATISTIC, "UNIQUE_ID", info.uniqueId, "SCENE_ID", info.sceneId, in ReportEventHitchTimeRatio()
801 sceneDescription << info.sceneId << ", " << info.bundleName << ", " << info.pageUrl in GetSceneDescription()
808 std::pair<int64_t, std::string> animationId(info.uniqueId, info.sceneId); in GetAnimationId()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_uifirst_manager.cpp1027 RS_OPTIONAL_TRACE_NAME_FMT("uifirst uniqueId:%" PRId64", appPid:%" PRId32", sceneId:%s", in OnProcessEventResponse()
1028 info.uniqueId, info.appPid, info.sceneId.c_str()); in OnProcessEventResponse()
1029 EventInfo eventInfo = {GetCurSysTime(), 0, info.uniqueId, info.appPid, info.sceneId, {}}; in OnProcessEventResponse()
1043 if (it->uniqueId == info.uniqueId && it->sceneId == info.sceneId) { in OnProcessEventComplete()
1055 if (it->uniqueId == info.uniqueId && it->sceneId == info.sceneId) { in EventDisableLeashWindowCache()
1143 if (IsCardSkipFirstWaitScene(item.sceneId, item.appPid)) { in EventsCanSkipFirstWait()
1153 if (std::find(screenshotAnimation_.begin(), screenshotAnimation_.end(), it.sceneId) != in IsScreenshotAnimation()
1194 (item.sceneId in CheckIfAppWindowHasAnimation()
[all...]
H A Drs_hardware_thread.cpp368 int32_t sceneId = (lastScreenId != id) ? SWITCH_SCREEN_SCENE : 0; in ExecuteSwitchRefreshRate() local
370 int32_t status = hgmCore.SetScreenRefreshRate(id, sceneId, refreshRate); in ExecuteSwitchRefreshRate()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_render_service_client.h82 std::string sceneId; member
182 void SetScreenRefreshRate(ScreenId id, int32_t sceneId, int32_t rate);

Completed in 26 milliseconds

12