Searched refs:PairingEventAnswer (Results 1 – 13 of 13) sorted by relevance
/packages/modules/Bluetooth/android/pandora/server/src/ |
D | Security.kt | 235 ): StreamObserver<PairingEventAnswer> = in <lambda>() 246 PairingEventAnswer.AnswerCase.CONFIRM -> in <lambda>() 248 PairingEventAnswer.AnswerCase.PASSKEY -> in <lambda>() 250 PairingEventAnswer.AnswerCase.PIN -> device.setPin(answer.pin.toByteArray()) in <lambda>() 251 PairingEventAnswer.AnswerCase.ANSWER_NOT_SET -> in <lambda>()
|
/packages/modules/Bluetooth/android/pandora/mmi2grpc/mmi2grpc/ |
D | sm.py | 25 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer 227 pairing_events.send(PairingEventAnswer(event=event, confirm=True)) 231 pairing_events.send(PairingEventAnswer(event=event, passkey=int(passkey)))
|
D | vcp.py | 22 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer 70 self.pairing_stream.send(PairingEventAnswer(
|
D | gap.py | 27 from pandora.security_pb2 import LEVEL1, LEVEL2, LE_LEVEL3, PairingEventAnswer 118 self.pairing_events.send(PairingEventAnswer(event=event, confirm=True)) 169 self.pairing_events.send(PairingEventAnswer(event=event, passkey=int(passkey))) 1071 self.pairing_events.send(PairingEventAnswer(event=event, confirm=True)) 1187 pairing_events.send(PairingEventAnswer(event=event, confirm=True))
|
D | hogp.py | 28 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer 82 self.pairing_stream.send(PairingEventAnswer(
|
D | l2cap.py | 25 from pandora.security_pb2 import PairingEventAnswer 470 self.pairing_events.send(PairingEventAnswer(event=event, confirm=True))
|
D | hfp.py | 23 from pandora.security_pb2 import PairingEventAnswer 1035 pairing_events.send(PairingEventAnswer(event=event, confirm=True))
|
D | gatt.py | 28 from pandora.security_pb2 import PairingEventAnswer 1328 self.pairing_events.send(PairingEventAnswer( 1355 self.pairing_events.send(PairingEventAnswer(event=event, passkey=int(passkey)))
|
/packages/modules/Bluetooth/android/pandora/test/pairing/ |
D | smp_test.py | 31 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer 72 ref_ev_answer = PairingEventAnswer( 78 dut_pairing_stream.send_nowait(PairingEventAnswer( 84 ref_pairing_stream.send_nowait(PairingEventAnswer(
|
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/pairing/ |
D | PairingTest.java | 74 import pandora.SecurityProto.PairingEventAnswer; 184 StreamObserver<PairingEventAnswer> pairingEventAnswerObserver = in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks() 206 PairingEventAnswer.newBuilder().setEvent(pairingEvent).setConfirm(true).build()); in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks() 246 StreamObserver<PairingEventAnswer> pairingEventAnswerObserver = in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected() 268 PairingEventAnswer.newBuilder().setEvent(pairingEvent).setConfirm(true).build()); in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected()
|
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/ |
D | RfcommTest.kt | 53 import pandora.SecurityProto.PairingEventAnswer 82 private val mPairingEventAnswerObserver: StreamObserver<PairingEventAnswer> 102 PairingEventAnswer.newBuilder() in onReceive() 135 private lateinit var mPairingEventAnswerObserver: StreamObserver<PairingEventAnswer>
|
/packages/modules/Bluetooth/android/pandora/test/ |
D | gatt_test.py | 33 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer, SecureResponse 165 dut_pairing_events.send_nowait(PairingEventAnswer(event=event, confirm=True)) 169 dut_pairing_events.send_nowait(PairingEventAnswer(event=event, confirm=True))
|
/packages/modules/Bluetooth/floss/pandora/server/ |
D | security.py | 181 async def OnPairing(self, request: AsyncIterator[security_pb2.PairingEventAnswer], argument
|