Home
last modified time | relevance | path

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

/system/connectivity/wificond/tests/
Dmock_netlink_utils.h32 MOCK_METHOD1(GetWiphyIndex, bool(uint32_t* out_wiphy_index));
33 MOCK_METHOD2(GetWiphyIndex,
Dserver_unittest.cpp82 ON_CALL(*netlink_utils_, GetWiphyIndex(_)).WillByDefault(Return(true)); in SetUp()
83 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault(Return(true)); in SetUp()
Dnetlink_utils_unittest.cpp325 EXPECT_TRUE(netlink_utils_->GetWiphyIndex(&wiphy_index)); in TEST_F()
337 EXPECT_FALSE(netlink_utils_->GetWiphyIndex(&wiphy_index)); in TEST_F()
/system/connectivity/wificond/net/
Dnetlink_utils.h173 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index);
174 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index,
Dnetlink_utils.cpp110 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index, in GetWiphyIndex() function in android::wificond::NetlinkUtils
156 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index) { in GetWiphyIndex() function in android::wificond::NetlinkUtils
157 return GetWiphyIndex(out_wiphy_index, ""); in GetWiphyIndex()
/system/connectivity/wificond/
Dserver.cpp234 if (netlink_utils_->GetWiphyIndex(&wiphy_index) && in MarkDownAllInterfaces()
329 if (!netlink_utils_->GetWiphyIndex(&wiphy_index_, iface_name)) { in RefreshWiphyIndex()