Lines Matching refs:optCounts_
26 AVSessionSysEvent::AVSessionSysEvent() : optCounts_ {},
33 auto it = optCounts_.find(operation);
34 if (it == optCounts_.end()) {
35 optCounts_.insert(std::make_pair(operation, 0));
36 it = optCounts_.find(operation);
44 optCounts_.clear();
58 HiSysWriteStatistic("CONTROL_COMMAND_STATISTICS", "PLAY_COUNT", optCounts_[Operation::OPT_PLAY],
59 "PAUSE_COUNT", optCounts_[Operation::OPT_PAUSE], "STOP_COUNT", optCounts_[Operation::OPT_STOP],
60 "PLAY_NEXT_COUNT", optCounts_[Operation::OPT_PLAY_NEXT],
61 "PLAY_PREVIOUS_COUNT", optCounts_[Operation::OPT_PLAY_PREVIOUS],
62 "FAST_FORWARD_COUNT", optCounts_[Operation::OPT_FAST_FORWARD],
63 "REWIND_COUNT", optCounts_[Operation::OPT_REWIND],
64 "SEEK_COUNT", optCounts_[Operation::OPT_SEEK],
65 "SET_SPEED_COUNT", optCounts_[Operation::OPT_SET_SPEED],
66 "SET_LOOP_MODE_COUNT", optCounts_[Operation::OPT_SET_LOOP_MODE],
67 "TOGGLE_FAVORITE_COUNT", optCounts_[Operation::OPT_TOGGLE_FAVORITE]);
82 "CREATE_SESSION_COUNT", optCounts_[Operation::OPT_CREATE_SESSION],
83 "DELETE_SESSION_COUNT", optCounts_[Operation::OPT_DELETE_SESSION]);
85 uint32_t allCtrlCmdCount = optCounts_[Operation::OPT_ALL_CTRL_COMMAND];
86 uint32_t allSuccCmdCount = optCounts_[Operation::OPT_SUCCESS_CTRL_COMMAND];