Home
last modified time | relevance | path

Searched refs:BondMsg (Results 1 – 4 of 4) sorted by relevance

/system/bt/gd/security/cert/
Dle_security_test.py148 …SecurityMatchers.BondMsg(BondMsgType.DEVICE_BOND_FAILED, self.cert_address), timeout=timedelta(sec…
179 …SecurityMatchers.BondMsg(BondMsgType.DEVICE_BOND_FAILED, self.cert_address), timeout=timedelta(sec…
220 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
255 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
292 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
329 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
366 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
402 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
440 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
478 SecurityMatchers.BondMsg(BondMsgType.DEVICE_BONDED, self.cert_address))
[all …]
/system/bt/gd/security/
Dfacade.proto29 rpc FetchBondEvents(google.protobuf.Empty) returns (stream BondMsg) {}
87 message BondMsg { message
Dfacade.cc209 ::grpc::ServerWriter<BondMsg>* writer) override { in FetchBondEvents()
494 BondMsg bonded; in OnDeviceBonded()
504 BondMsg unbonded; in OnDeviceUnbonded()
512 BondMsg bond_failed; in OnDeviceBondFailed()
530 ::bluetooth::grpc::GrpcEventQueue<BondMsg> bond_events_{"Bond events"};
/system/bt/gd/cert/
Dmatchers.py713 def BondMsg(type, address=None, reason=None): member in SecurityMatchers