Home
last modified time | relevance | path

Searched refs:BluetoothDeathRecipient (Results 1 – 6 of 6) sorted by relevance

/system/bt/service/example/heart_rate/
Dserver_main.cc48 class BluetoothDeathRecipient : public android::IBinder::DeathRecipient { class
50 explicit BluetoothDeathRecipient( in BluetoothDeathRecipient() function in __anonce3fcd5b0111::BluetoothDeathRecipient
54 ~BluetoothDeathRecipient() override = default;
111 sp<BluetoothDeathRecipient> dr( in main()
112 new BluetoothDeathRecipient(main_loop.task_runner())); in main()
/system/bt/vendor_libs/linux/interface/
Dbluetooth_hci.h38 class BluetoothDeathRecipient; variable
75 ::android::sp<BluetoothDeathRecipient> death_recipient_;
76 std::function<void(sp<BluetoothDeathRecipient>&)> unlink_cb_;
Dbluetooth_hci.cc244 class BluetoothDeathRecipient : public hidl_death_recipient { class
246 BluetoothDeathRecipient(const sp<IBluetoothHci> hci) : mHci(hci) {} in BluetoothDeathRecipient() function in android::hardware::bluetooth::V1_1::btlinux::BluetoothDeathRecipient
264 : death_recipient_(new BluetoothDeathRecipient(this)) {} in BluetoothHci()
306 unlink_cb_ = [cb](sp<BluetoothDeathRecipient>& death_recipient) { in initialize_impl()
/system/bt/test/rootcanal/
Dbluetooth_hci.h39 class BluetoothDeathRecipient; variable
70 sp<BluetoothDeathRecipient> death_recipient_;
72 std::function<void(sp<BluetoothDeathRecipient>&)> unlink_cb_;
Dbluetooth_hci.cc49 class BluetoothDeathRecipient : public hidl_death_recipient { class
51 BluetoothDeathRecipient(const sp<IBluetoothHci> hci) : mHci(hci) {} in BluetoothDeathRecipient() function in android::hardware::bluetooth::V1_1::sim::BluetoothDeathRecipient
72 BluetoothHci::BluetoothHci() : death_recipient_(new BluetoothDeathRecipient(this)) {} in BluetoothHci()
217 unlink_cb_ = [this, cb](sp<BluetoothDeathRecipient>& death_recipient) { in initialize_impl()
/system/bt/service/client/
Dmain.cc1049 class BluetoothDeathRecipient : public android::IBinder::DeathRecipient { class
1051 BluetoothDeathRecipient() = default;
1052 ~BluetoothDeathRecipient() override = default;
1066 DISALLOW_COPY_AND_ASSIGN(BluetoothDeathRecipient);
1087 sp<BluetoothDeathRecipient> dr(new BluetoothDeathRecipient()); in main()