Lines Matching refs:aWindowId

53 void APZUpdater::SetWebRenderWindowId(const wr::WindowId& aWindowId) {  in SetWebRenderWindowId()  argument
56 mWindowId = Some(aWindowId); in SetWebRenderWindowId()
62 (*sWindowIdMap)[wr::AsUint64(aWindowId)] = this; in SetWebRenderWindowId()
66 void APZUpdater::SetUpdaterThread(const wr::WrWindowId& aWindowId) { in SetUpdaterThread() argument
67 if (RefPtr<APZUpdater> updater = GetUpdater(aWindowId)) { in SetUpdaterThread()
74 void APZUpdater::PrepareForSceneSwap(const wr::WrWindowId& aWindowId) { in PrepareForSceneSwap() argument
75 if (RefPtr<APZUpdater> updater = GetUpdater(aWindowId)) { in PrepareForSceneSwap()
81 void APZUpdater::CompleteSceneSwap(const wr::WrWindowId& aWindowId, in CompleteSceneSwap() argument
83 RefPtr<APZUpdater> updater = GetUpdater(aWindowId); in CompleteSceneSwap()
126 void APZUpdater::ProcessPendingTasks(const wr::WrWindowId& aWindowId) { in ProcessPendingTasks() argument
127 if (RefPtr<APZUpdater> updater = GetUpdater(aWindowId)) { in ProcessPendingTasks()
414 const wr::WrWindowId& aWindowId) { in GetUpdater() argument
418 auto it = sWindowIdMap->find(wr::AsUint64(aWindowId)); in GetUpdater()
524 void apz_register_updater(mozilla::wr::WrWindowId aWindowId) { in apz_register_updater() argument
525 mozilla::layers::APZUpdater::SetUpdaterThread(aWindowId); in apz_register_updater()
528 void apz_pre_scene_swap(mozilla::wr::WrWindowId aWindowId) { in apz_pre_scene_swap() argument
529 mozilla::layers::APZUpdater::PrepareForSceneSwap(aWindowId); in apz_pre_scene_swap()
532 void apz_post_scene_swap(mozilla::wr::WrWindowId aWindowId, in apz_post_scene_swap() argument
534 mozilla::layers::APZUpdater::CompleteSceneSwap(aWindowId, *aInfo); in apz_post_scene_swap()
537 void apz_run_updater(mozilla::wr::WrWindowId aWindowId) { in apz_run_updater() argument
538 mozilla::layers::APZUpdater::ProcessPendingTasks(aWindowId); in apz_run_updater()
541 void apz_deregister_updater(mozilla::wr::WrWindowId aWindowId) { in apz_deregister_updater() argument
543 mozilla::layers::APZUpdater::ProcessPendingTasks(aWindowId); in apz_deregister_updater()