Home
last modified time | relevance | path

Searched refs:WifiNanIface (Results 1 – 5 of 5) sorted by relevance

/hardware/interfaces/wifi/aidl/default/
Dwifi_nan_iface.cpp31 WifiNanIface::WifiNanIface(const std::string& ifname, bool is_dedicated_iface, in WifiNanIface() function in aidl::android::hardware::wifi::WifiNanIface
40 std::shared_ptr<WifiNanIface> WifiNanIface::create( in create()
44 std::shared_ptr<WifiNanIface> ptr = ndk::SharedRefBase::make<WifiNanIface>( in create()
54 std::weak_ptr<WifiNanIface> weak_ptr_this(ptr); in create()
60 void WifiNanIface::registerCallbackHandlers() { in registerCallbackHandlers()
65 std::weak_ptr<WifiNanIface> weak_ptr_this = weak_ptr_this_; in registerCallbackHandlers()
645 void WifiNanIface::setWeakPtr(std::weak_ptr<WifiNanIface> ptr) { in setWeakPtr()
649 void WifiNanIface::invalidate() { in invalidate()
667 bool WifiNanIface::isValid() { in isValid()
671 std::string WifiNanIface::getName() { in getName()
[all …]
Dwifi_nan_iface.h36 class WifiNanIface : public BnWifiNanIface {
38 WifiNanIface(const std::string& ifname, bool is_dedicated_iface,
43 static std::shared_ptr<WifiNanIface> create(
95 void setWeakPtr(std::weak_ptr<WifiNanIface> ptr);
145 std::weak_ptr<WifiNanIface> weak_ptr_this_;
148 DISALLOW_COPY_AND_ASSIGN(WifiNanIface);
Dwifi_chip.h282 std::vector<std::shared_ptr<WifiNanIface>> nan_ifaces_;
Dwifi_chip.cpp972 std::shared_ptr<WifiNanIface> iface = in createNanIfaceInternal()
973 WifiNanIface::create(ifname, is_dedicated_iface, legacy_hal_, iface_util_); in createNanIfaceInternal()
/hardware/interfaces/wifi/aidl/default/tests/
Dwifi_nan_iface_unit_tests.cpp49 class MockNanIface : public WifiNanIface {
54 : WifiNanIface(ifname, is_dedicated_iface, legacy_hal, iface_util) {} in MockNanIface()