Searched refs:UwbChip (Results 1 – 7 of 7) sorted by relevance
32 UwbChip::UwbChip(const std::string& name) : name_(name){}; in UwbChip() function in android::hardware::uwb::impl::UwbChip33 std::shared_ptr<IUwbClientCallback> UwbChip::mClientCallback = nullptr;35 UwbChip::~UwbChip() {} in ~UwbChip()38 if (UwbChip::mClientCallback != nullptr && in onServiceDied()39 !AIBinder_isAlive(UwbChip::mClientCallback->asBinder().get())) { in onServiceDied()42 UwbChip *uwbChip = static_cast<UwbChip *>(cookie); in onServiceDied()47 ::ndk::ScopedAStatus UwbChip::getName(std::string* name) { in getName()52 ::ndk::ScopedAStatus UwbChip::open(const std::shared_ptr<IUwbClientCallback>& clientCallback) { in open()74 ::ndk::ScopedAStatus UwbChip::close() { in close()90 ::ndk::ScopedAStatus UwbChip::coreInit() { in coreInit()[all …]
35 class UwbChip : public BnUwbChip {37 UwbChip(const std::string& name);38 virtual ~UwbChip();
42 std::map<std::string, std::shared_ptr<UwbChip>> chips_;
32 Uwb::Uwb() : chips_({{kDefaultChipName, ndk::SharedRefBase::make<UwbChip>(kDefaultChipName)}}) {} in Uwb()
33 pub struct UwbChip { struct39 impl UwbChip { argument130 impl binder::Interface for UwbChip {} implementation133 impl IUwbChipAsyncServer for UwbChip { implementation
34 .map(|(i, arg)| uwb_chip::UwbChip::new(i.to_string(), arg)); in main()
15 chips: impl IntoIterator<Item = uwb_chip::UwbChip>, in from_chips()