Lines Matching refs:ev
731 PacketChild::HciEvent(ev) => match ev.specialize() { in process()
964 PacketChild::HciEvent(ev) => match ev.specialize() { in process()
965 EventChild::ConnectionComplete(ev) => { in process()
966 if ev.get_status() == ErrorCode::Success { in process()
967 self.handles.insert(ev.get_connection_handle(), ev.get_bd_addr()); in process()
970 EventChild::LinkKeyRequest(ev) => { in process()
971 self.process_request_link_key(ev.get_bd_addr()); in process()
973 EventChild::SimplePairingComplete(ev) => { in process()
974 self.process_address_auth(ev.get_status(), ev.get_bd_addr(), &packet); in process()
976 EventChild::AuthenticationComplete(ev) => { in process()
977 self.process_handle_auth(ev.get_status(), ev.get_connection_handle(), &packet); in process()
979 EventChild::DisconnectionComplete(ev) => { in process()
980 self.process_handle_auth(ev.get_status(), ev.get_connection_handle(), &packet); in process()
981 self.handles.remove(&ev.get_connection_handle()); in process()
983 EventChild::EncryptionChange(ev) => { in process()
985 ev.get_status(), in process()
986 ev.get_connection_handle(), in process()
990 EventChild::LeMetaEvent(ev) => match ev.specialize() { in process()
991 LeMetaEventChild::LeConnectionComplete(ev) => { in process()
992 if ev.get_status() == ErrorCode::Success { in process()
993 self.handles.insert(ev.get_connection_handle(), ev.get_peer_address()); in process()
996 LeMetaEventChild::LeEnhancedConnectionComplete(ev) => { in process()
997 if ev.get_status() == ErrorCode::Success { in process()
998 self.handles.insert(ev.get_connection_handle(), ev.get_peer_address()); in process()
1117 PacketChild::HciEvent(ev) => match ev.specialize() { in process()
1118 EventChild::ConnectionComplete(ev) => { in process()
1120 ev.get_status(), in process()
1121 ev.get_bd_addr(), in process()
1122 ev.get_encryption_enabled(), in process()