Home
last modified time | relevance | path

Searched refs:PairingEventAnswer (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Bluetooth/android/pandora/server/src/
DSecurity.kt235 ): 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/
Dsm.py25 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)))
Dvcp.py22 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer
70 self.pairing_stream.send(PairingEventAnswer(
Dgap.py27 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))
Dhogp.py28 from pandora.security_pb2 import LE_LEVEL3, PairingEventAnswer
82 self.pairing_stream.send(PairingEventAnswer(
Dl2cap.py25 from pandora.security_pb2 import PairingEventAnswer
470 self.pairing_events.send(PairingEventAnswer(event=event, confirm=True))
Dhfp.py23 from pandora.security_pb2 import PairingEventAnswer
1035 pairing_events.send(PairingEventAnswer(event=event, confirm=True))
Dgatt.py28 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/
Dsmp_test.py31 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/
DPairingTest.java74 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/
DRfcommTest.kt53 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/
Dgatt_test.py33 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/
Dsecurity.py181 async def OnPairing(self, request: AsyncIterator[security_pb2.PairingEventAnswer], argument