Lines Matching refs:view
102 #define GET_CONNECTION(view) \ argument
105 if (!view.IsValid()) { \
109 connection = acl_connections_.find(view.GetConnectionHandle()); \
132 auto view = DisconnectView::Create(command_view); in ConnectionCommand() local
133 GET_CONNECTION(view); in ConnectionCommand()
134 connection->second.connection_->Disconnect(view.GetReason()); in ConnectionCommand()
138 auto view = ChangeConnectionPacketTypeView::Create(command_view); in ConnectionCommand() local
139 GET_CONNECTION(view); in ConnectionCommand()
140 connection->second.connection_->ChangeConnectionPacketType(view.GetPacketType()); in ConnectionCommand()
144 auto view = SetConnectionEncryptionView::Create(command_view); in ConnectionCommand() local
145 GET_CONNECTION(view); in ConnectionCommand()
146 connection->second.connection_->SetConnectionEncryption(view.GetEncryptionEnable()); in ConnectionCommand()
160 auto view = HoldModeView::Create(command_view); in ConnectionCommand() local
161 GET_CONNECTION(view); in ConnectionCommand()
162 …connection->second.connection_->HoldMode(view.GetHoldModeMaxInterval(), view.GetHoldModeMinInterva… in ConnectionCommand()
166 auto view = SniffModeView::Create(command_view); in ConnectionCommand() local
167 GET_CONNECTION(view); in ConnectionCommand()
169 …view.GetSniffMaxInterval(), view.GetSniffMinInterval(), view.GetSniffAttempt(), view.GetSniffTimeo… in ConnectionCommand()
188 auto view = WriteAutomaticFlushTimeoutView::Create(command_view); in ConnectionCommand() local
189 GET_CONNECTION(view); in ConnectionCommand()
190 connection->second.connection_->WriteAutomaticFlushTimeout(view.GetFlushTimeout()); in ConnectionCommand()
194 auto view = ReadTransmitPowerLevelView::Create(command_view); in ConnectionCommand() local
195 GET_CONNECTION(view); in ConnectionCommand()
196 connection->second.connection_->ReadTransmitPowerLevel(view.GetTransmitPowerLevelType()); in ConnectionCommand()
205 auto view = WriteLinkSupervisionTimeoutView::Create(command_view); in ConnectionCommand() local
206 GET_CONNECTION(view); in ConnectionCommand()
207 … connection->second.connection_->WriteLinkSupervisionTimeout(view.GetLinkSupervisionTimeout()); in ConnectionCommand()
236 auto view = ReadClockView::Create(command_view); in ConnectionCommand() local
237 GET_CONNECTION(view); in ConnectionCommand()
238 connection->second.connection_->ReadClock(view.GetWhichClock()); in ConnectionCommand()