Home
last modified time | relevance | path

Searched refs:RustCallbacks (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/bt/gd/rust/topshim/src/
H A Dbtif.rs184 type RustCallbacks; typedef
192 cb: &RustCallbacks, in adapter_properties_callback() argument
198 cb: &RustCallbacks, in remote_device_properties_callback() argument
262 pub struct RustCallbacks { struct
353 cb: &RustCallbacks, in adapter_properties_callback() argument
362 cb: &RustCallbacks, in remote_device_properties_callback() argument
372 cb: &RustCallbacks, in device_found_callback() argument
386 cb: &RustCallbacks, in pin_request_callback() argument
395 cb: &RustCallbacks, in ssp_request_callback() argument
405 cb: &RustCallbacks, in bond_state_changed_callback() argument
[all …]
/aosp12/system/bt/gd/rust/topshim/btif/
H A Dbtif_shim.h28 struct RustCallbacks;
40 bool Initialize(::rust::Box<RustCallbacks> callbacks, ::rust::Vec<::rust::String> initFlags);
68 ::rust::Box<RustCallbacks>& GetCallbacks() { in GetCallbacks()
75 std::unique_ptr<::rust::Box<RustCallbacks>> callbacks_;
H A Dbtif_shim.cc195 bool BluetoothIntf::Initialize(::rust::Box<RustCallbacks> callbacks, ::rust::Vec<::rust::String> in… in Initialize()
198 callbacks_ = std::make_unique<::rust::Box<RustCallbacks>>(std::move(callbacks)); in Initialize()