Home
last modified time | relevance | path

Searched refs:AuthReq (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dbt_gatt.rs6 pub enum AuthReq { enum
15 impl From<AuthReq> for i32 {
16 fn from(auth_req: AuthReq) -> Self { in from()
26 pub(crate) auth_req: AuthReq,
41 auth_req: AuthReq::NONE, in new()
49 pub(crate) fn get_auth_req(&self) -> AuthReq { in get_auth_req() argument
Dcommand_handler.rs8 use crate::bt_gatt::AuthReq;
1223 "NONE" => AuthReq::NONE, in cmd_gatt()
1224 "EncNoMitm" => AuthReq::EncNoMitm, in cmd_gatt()
1225 "EncMitm" => AuthReq::EncMitm, in cmd_gatt()
1226 "SignedNoMitm" => AuthReq::SignedNoMitm, in cmd_gatt()
1227 "SignedMitm" => AuthReq::SignedMitm, in cmd_gatt()