Searched refs:GetWiphyIndex (Results 1 – 6 of 6) sorted by relevance
/system/connectivity/wificond/tests/ |
D | mock_netlink_utils.h | 32 MOCK_METHOD1(GetWiphyIndex, bool(uint32_t* out_wiphy_index)); 33 MOCK_METHOD2(GetWiphyIndex,
|
D | server_unittest.cpp | 83 ON_CALL(*netlink_utils_, GetWiphyIndex(_)).WillByDefault(Return(true)); in SetUp() 84 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault(Return(true)); in SetUp() 216 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault( in TEST_F() 237 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault( in TEST_F() 291 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault( in TEST_F() 319 ON_CALL(*netlink_utils_, GetWiphyIndex(_, _)).WillByDefault( in TEST_F()
|
D | netlink_utils_unittest.cpp | 397 EXPECT_TRUE(netlink_utils_->GetWiphyIndex(&wiphy_index)); in TEST_F() 409 EXPECT_FALSE(netlink_utils_->GetWiphyIndex(&wiphy_index)); in TEST_F()
|
/system/connectivity/wificond/net/ |
D | netlink_utils.h | 203 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index); 204 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index,
|
D | netlink_utils.cpp | 131 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index, in GetWiphyIndex() function in android::wificond::NetlinkUtils 192 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index) { in GetWiphyIndex() function in android::wificond::NetlinkUtils 193 return GetWiphyIndex(out_wiphy_index, ""); in GetWiphyIndex()
|
/system/connectivity/wificond/ |
D | server.cpp | 462 if (!netlink_utils_->GetWiphyIndex(wiphy_index, iface_name)) { in SetupInterface() 497 if (netlink_utils_->GetWiphyIndex(&wiphy_index, it.first)) { in handleCountryCodeChanged() 506 if (netlink_utils_->GetWiphyIndex(&wiphy_index, it.first)) { in handleCountryCodeChanged()
|