Home
last modified time | relevance | path

Searched refs:start_discovery (Results 1 – 15 of 15) sorted by relevance

/packages/modules/Bluetooth/system/test/headless/discovery/
Ddiscovery.cc43 int start_discovery([[maybe_unused]] unsigned int num_loops, in start_discovery() function
73 return start_discovery(options_.loop_, options_.device_.front()); in Run()
/packages/modules/Bluetooth/system/test/suite/adapter/
Dadapter_unittest.cc123 EXPECT_EQ(bt_interface()->start_discovery(), BT_STATUS_SUCCESS); in TEST_F()
139 EXPECT_EQ(bt_interface()->start_discovery(), BT_STATUS_SUCCESS); in TEST_F()
187 EXPECT_EQ(bt_interface()->start_discovery(), BT_STATUS_SUCCESS); in TEST_F()
/packages/modules/Bluetooth/system/test/headless/scan/
Dscan.cc41 log::assert_that(bluetoothInterface.start_discovery() == BT_STATUS_SUCCESS, in start_scan()
/packages/modules/Bluetooth/floss/pandora/server/
Dbluetooth.py283 def start_discovery(self): member in Bluetooth
287 return self.adapter_client.start_discovery()
Dhost.py579 self.bluetooth.start_discovery()
/packages/modules/Bluetooth/system/btif/src/
Dbluetooth.cc594 static int start_discovery(void) { in start_discovery() function
1173 .start_discovery = start_discovery,
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs149 fn start_discovery(&mut self) -> bool; in start_discovery() method
1326 self.start_discovery(); in discovery_exit_suspend()
1346 self.start_discovery(); in resume_discovery()
2325 fn start_discovery(&mut self) -> bool { in start_discovery() method
2346 self.intf.lock().unwrap().start_discovery() == 0 in start_discovery()
/packages/modules/Bluetooth/system/include/hardware/
Dbluetooth.h744 int (*start_discovery)(void); member
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dadapter_service.rs384 true => self.btif_intf.lock().unwrap().start_discovery(), in toggle_discovery()
/packages/modules/Bluetooth/floss/pandora/floss/
Dadapter_client.py688 def start_discovery(self): member in FlossAdapterClient
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs1350 pub fn start_discovery(&self) -> i32 { in start_discovery() method
1351 ccall!(self, start_discovery) in start_discovery()
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth.rs580 fn start_discovery(&mut self) -> bool { in start_discovery() method
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcommand_handler.rs687 self.lock_context().adapter_dbus.as_mut().unwrap().start_discovery(); in cmd_discovery()
Ddbus_iface.rs845 fn start_discovery(&mut self) -> bool { in start_discovery() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_btservice_AdapterService.cpp1120 int ret = sBluetoothInterface->start_discovery(); in startDiscoveryNative()