Home
last modified time | relevance | path

Searched defs:BleScannerIntf (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs139 type BleScannerIntf; typedef
145 unsafe fn GetBleScannerIntf(gatt: *const u8) -> UniquePtr<BleScannerIntf>; in GetBleScannerIntf()
147 fn RegisterScanner(self: Pin<&mut BleScannerIntf>, uuid: Uuid); in RegisterScanner()
148 fn Unregister(self: Pin<&mut BleScannerIntf>, scanner_id: u8); in Unregister()
149 fn Scan(self: Pin<&mut BleScannerIntf>, start: bool); in Scan()
151 self: Pin<&mut BleScannerIntf>, in ScanFilterParamSetup()
158 self: Pin<&mut BleScannerIntf>, in ScanFilterAdd()
162 fn ScanFilterClear(self: Pin<&mut BleScannerIntf>, filter_index: u8); in ScanFilterClear()
163 fn ScanFilterEnable(self: Pin<&mut BleScannerIntf>, enable: bool); in ScanFilterEnable()
165 fn MsftAdvMonitorAdd(self: Pin<&mut BleScannerIntf>, monitor: &RustMsftAdvMonitor); in MsftAdvMonitorAdd()
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/
Dgatt_ble_scanner_shim.h34 explicit BleScannerIntf(BleScannerInterface* scanner_intf) : scanner_intf_(scanner_intf) {} in BleScannerIntf() function