Home
last modified time | relevance | path

Searched refs:GetCommand (Results 1 – 12 of 12) sorted by relevance

/system/connectivity/wificond/net/
Dmlme_event.cpp53 if (packet->GetCommand() != NL80211_CMD_ASSOCIATE) { in InitFromPacket()
75 if (packet->GetCommand() != NL80211_CMD_CONNECT) { in InitFromPacket()
97 if (packet->GetCommand() != NL80211_CMD_ROAM) { in InitFromPacket()
112 if (packet->GetCommand() != NL80211_CMD_DISCONNECT) { in InitFromPacket()
126 if (packet->GetCommand() != NL80211_CMD_DISASSOCIATE) { in InitFromPacket()
Dnetlink_utils.cpp142 if (packet->GetCommand() != NL80211_CMD_NEW_WIPHY) { in GetWiphyIndex()
145 << static_cast<int>(packet->GetCommand()); in GetWiphyIndex()
191 if (packet->GetCommand() != NL80211_CMD_NEW_INTERFACE) { in GetInterfaces()
194 << static_cast<int>(packet->GetCommand()); in GetInterfaces()
336 if (packet.GetCommand() != NL80211_CMD_NEW_WIPHY) { in ParseWiphyInfoFromPacket()
338 << static_cast<int>(packet.GetCommand()); in ParseWiphyInfoFromPacket()
496 if (response->GetCommand() != NL80211_CMD_NEW_STATION) { in GetStationInfo()
498 << static_cast<int>(response->GetCommand()); in GetStationInfo()
Dnetlink_manager.cpp175 if (packet->GetCommand() != CTRL_CMD_NEWFAMILY) { in OnNewFamily()
492 uint32_t command = packet->GetCommand(); in BroadcastHandler()
609 uint32_t command = packet->GetCommand(); in OnMlmeEvent()
662 handler->second(if_index, packet->GetCommand() == NL80211_CMD_SCHED_SCAN_STOPPED); in OnSchedScanResultsReady()
672 if (packet->GetCommand() == NL80211_CMD_SCAN_ABORTED) { in OnScanResultsReady()
Dnl80211_packet.h76 uint8_t GetCommand() const;
Dnl80211_packet.cpp105 uint8_t NL80211Packet::GetCommand() const { in GetCommand() function in android::wificond::NL80211Packet
/system/connectivity/wificond/tests/
Dnl80211_packet_unittest.cpp105 EXPECT_EQ(kGenNLCommand, netlink_packet.GetCommand()); in TEST()
222 EXPECT_EQ(NL80211_CMD_ASSOCIATE, netlink_packet.GetCommand()); in TEST()
240 EXPECT_EQ(NL80211_CMD_NOTIFY_CQM, netlink_packet.GetCommand()); in TEST()
264 EXPECT_EQ(NL80211_CMD_NEW_STATION, netlink_packet.GetCommand()); in TEST()
Dscan_utils_unittest.cpp114 return arg.GetCommand() == command;
/system/bt/vendor_libs/test_vendor_lib/packets/link_layer/
Dcommand_view.h34 static CommandView GetCommand(const LinkLayerPacketView& view) { in GetCommand() function
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc105 CommandView command_view = CommandView::GetCommand(received_view); in ValidatePacket()
202 client_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromClient()
209 server_opcodes_[pair_id] = CommandView::GetCommand(view).GetOpcode(); in SendFromServer()
/system/connectivity/wificond/scanning/
Dscan_utils.cpp134 if (packet->GetCommand() != NL80211_CMD_NEW_SCAN_RESULTS) { in ParseScanResult()
/system/bt/vendor_libs/test_vendor_lib/packets/test/
Dlink_layer_packet_builder_test.cc419 auto command_view = CommandView::GetCommand(view); in TEST_F()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.cc211 CommandView command = CommandView::GetCommand(incoming); in IncomingCommandPacket()