Lines Matching refs:notice
215 AddObserverEvent notice = std::get<AddObserverEvent>(event.event);
216 context.AddObserver(notice.observer);
221 RemoveObserverEvent notice = std::get<RemoveObserverEvent>(event.event);
222 context.RemoveObserver(notice.observer);
227 RegisterListenerEvent notice = std::get<RegisterListenerEvent>(event.event);
228 context.eventMgr_.RegisterListener(notice);
233 UnregisterListenerEvent notice = std::get<UnregisterListenerEvent>(event.event);
234 context.eventMgr_.UnregisterListener(notice);
239 RegisterHotareaListenerEvent notice = std::get<RegisterHotareaListenerEvent>(event.event);
240 context.hotArea_.AddListener(notice);
245 UnregisterHotareaListenerEvent notice = std::get<UnregisterHotareaListenerEvent>(event.event);
246 context.hotArea_.RemoveListener(notice);
311 EventManager::CooperateStateNotice notice {
317 context.eventMgr_.GetCooperateState(notice);
323 ClientDiedEvent notice = std::get<ClientDiedEvent>(event.event);
324 context.eventMgr_.OnClientDied(notice);
325 context.hotArea_.OnClientDied(notice);
326 context.mouseLocation_.OnClientDied(notice);
332 RegisterEventListenerEvent notice = std::get<RegisterEventListenerEvent>(event.event);
333 context.mouseLocation_.AddListener(notice);
338 UnregisterEventListenerEvent notice = std::get<UnregisterEventListenerEvent>(event.event);
339 context.mouseLocation_.RemoveListener(notice);
370 DDPCooperateSwitchChanged notice = std::get<DDPCooperateSwitchChanged>(event.event);
371 context.eventMgr_.OnProfileChanged(notice);
388 DSoftbusSessionClosed notice = std::get<DSoftbusSessionClosed>(event.event);
389 context.eventMgr_.OnSoftbusSessionClosed(notice);
390 context.inputDevMgr_.OnSoftbusSessionClosed(notice);
391 context.CloseDistributedFileConnection(notice.networkId);
398 DSoftbusSessionOpened notice = std::get<DSoftbusSessionOpened>(event.event);
399 context.inputDevMgr_.OnSoftbusSessionOpened(notice);
406 InputHotplugEvent notice = std::get<InputHotplugEvent>(event.event);
407 context.inputDevMgr_.OnLocalHotPlug(notice);
414 DSoftbusSyncInputDevice notice = std::get<DSoftbusSyncInputDevice>(event.event);
415 context.inputDevMgr_.OnRemoteInputDevice(notice);
422 DSoftbusHotPlugEvent notice = std::get<DSoftbusHotPlugEvent>(event.event);
423 context.inputDevMgr_.OnRemoteHotPlug(notice);
430 DSoftbusSubscribeMouseLocation notice = std::get<DSoftbusSubscribeMouseLocation>(event.event);
431 context.mouseLocation_.OnSubscribeMouseLocation(notice);
437 DSoftbusUnSubscribeMouseLocation notice = std::get<DSoftbusUnSubscribeMouseLocation>(event.event);
438 context.mouseLocation_.OnUnSubscribeMouseLocation(notice);
444 DSoftbusReplySubscribeMouseLocation notice = std::get<DSoftbusReplySubscribeMouseLocation>(event.event);
445 context.mouseLocation_.OnReplySubscribeMouseLocation(notice);
451 DSoftbusReplyUnSubscribeMouseLocation notice = std::get<DSoftbusReplyUnSubscribeMouseLocation>(event.event);
452 context.mouseLocation_.OnReplyUnSubscribeMouseLocation(notice);
458 DSoftbusSyncMouseLocation notice = std::get<DSoftbusSyncMouseLocation>(event.event);
459 context.mouseLocation_.OnRemoteMouseLocation(notice);