Searched refs:GetWiphyIndex (Results 1 – 6 of 6) sorted by relevance
/aosp12/system/connectivity/wificond/tests/ |
H A 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()
|
H A D | mock_netlink_utils.h | 32 MOCK_METHOD1(GetWiphyIndex, bool(uint32_t* out_wiphy_index)); 33 MOCK_METHOD2(GetWiphyIndex,
|
H A 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()
|
/aosp12/system/connectivity/wificond/net/ |
H A D | netlink_utils.h | 197 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index); 198 virtual bool GetWiphyIndex(uint32_t* out_wiphy_index,
|
H A D | netlink_utils.cpp | 127 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index, in GetWiphyIndex() function in android::wificond::NetlinkUtils 177 bool NetlinkUtils::GetWiphyIndex(uint32_t* out_wiphy_index) { in GetWiphyIndex() function in android::wificond::NetlinkUtils 178 return GetWiphyIndex(out_wiphy_index, ""); in GetWiphyIndex()
|
/aosp12/system/connectivity/wificond/ |
H A D | server.cpp | 458 if (!netlink_utils_->GetWiphyIndex(wiphy_index, iface_name)) { in SetupInterface()
|