Home
last modified time | relevance | path

Searched refs:endScreenCaptureMonitors_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/multimodalinput/input/service/monitor/src/
H A Devent_monitor_handler.cpp288 auto it = endScreenCaptureMonitors_.find(pid); in RemoveMonitor()
289 if (it != endScreenCaptureMonitors_.end()) { in RemoveMonitor()
295 endScreenCaptureMonitors_.erase(it); in RemoveMonitor()
420 return (endScreenCaptureMonitors_.find(pid) != endScreenCaptureMonitors_.end()); in HasScreenCaptureMonitor()
442 endScreenCaptureMonitors_.emplace(pid, monitorSet); in RemoveScreenCaptureMonitor()
451 auto it = endScreenCaptureMonitors_.find(pid); in RecoveryScreenCaptureMonitor()
452 if (it != endScreenCaptureMonitors_.end()) { in RecoveryScreenCaptureMonitor()
457 endScreenCaptureMonitors_.erase(it); in RecoveryScreenCaptureMonitor()
688 auto it = endScreenCaptureMonitors_.find(pid); in OnSessionLost()
689 if (it != endScreenCaptureMonitors_.end()) { in OnSessionLost()
[all …]
/ohos5.0/foundation/multimodalinput/input/service/monitor/test/
H A Devent_monitor_handler_test.cpp670 monitorCollection.endScreenCaptureMonitors_[-1] = handlerSet;
705 monitorCollection.endScreenCaptureMonitors_[-1] = handlerSet;
710 monitorCollection.endScreenCaptureMonitors_[-1] = handlerSet;
733 monitorCollection.endScreenCaptureMonitors_[-1] = handlerSet;
755 monitorCollection.endScreenCaptureMonitors_[-1] = handlerSet;
/ohos5.0/foundation/multimodalinput/input/service/monitor/include/
H A Devent_monitor_handler.h144 std::map<int32_t, std::set<SessionHandler>> endScreenCaptureMonitors_; variable