/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/command/ |
H A D | SppCommand.java | 51 public class CommandId { class in SppCommand 60 sCommands.put("exec", CommandId.EXEC); 61 sCommands.put("addMO", CommandId.ADD_MO); 62 sCommands.put("updateNode", CommandId.UPDATE_NODE); 63 sCommands.put("noMOUpdate", CommandId.NO_MO_UPDATE); 93 case CommandId.EXEC: in SppCommand() 136 case CommandId.ADD_MO: in SppCommand() 144 case CommandId.UPDATE_NODE: in SppCommand() 151 case CommandId.NO_MO_UPDATE: in SppCommand()
|
/aosp12/hardware/interfaces/wifi/1.0/ |
H A D | IWifiRttController.hal | 66 rangeRequest(CommandId cmdId, vec<RttConfig> rttConfigs) 82 rangeCancel(CommandId cmdId, vec<MacAddress> addrs) 111 setLci(CommandId cmdId, RttLciInformation lci) generates (WifiStatus status); 127 setLcr(CommandId cmdId, RttLcrInformation lcr) generates (WifiStatus status); 158 enableResponder(CommandId cmdId, 175 disableResponder(CommandId cmdId) generates (WifiStatus status);
|
H A D | IWifiStaIfaceEventCallback.hal | 26 oneway onBackgroundScanFailure(CommandId cmdId); 39 CommandId cmdId, uint32_t bucketsScanned, StaScanResult result); 50 oneway onBackgroundScanResults(CommandId cmdId, vec<StaScanData> scanDatas); 60 oneway onRssiThresholdBreached(CommandId cmdId, Bssid currBssid, Rssi currRssi);
|
H A D | IWifiStaIface.hal | 184 installApfPacketFilter(CommandId cmdId, vec<uint8_t> program) 259 startBackgroundScan(CommandId cmdId, StaBackgroundScanParameters params) 276 stopBackgroundScan(CommandId cmdId) generates (WifiStatus status); 350 startRssiMonitoring(CommandId cmdId, Rssi maxRssi, Rssi minRssi) 367 stopRssiMonitoring(CommandId cmdId) generates (WifiStatus status); 446 CommandId cmdId, vec<uint8_t> ipPacketData, uint16_t etherType, 462 stopSendingKeepAlivePackets(CommandId cmdId) generates (WifiStatus status);
|
H A D | IWifiRttControllerEventCallback.hal | 29 oneway onResults(CommandId cmdId, vec<RttResult> results);
|
H A D | types.hal | 80 typedef uint32_t CommandId;
|
/aosp12/hardware/interfaces/wifi/1.4/ |
H A D | IWifiRttControllerEventCallback.hal | 20 import @1.0::CommandId; 32 oneway onResults_1_4(CommandId cmdId, vec<RttResult> results);
|
H A D | IWifiRttController.hal | 20 import @1.0::CommandId; 57 rangeRequest_1_4(CommandId cmdId, vec<RttConfig> rttConfigs) generates (WifiStatus status); 100 enableResponder_1_4(CommandId cmdId, WifiChannelInfo channelHint,
|
/aosp12/hardware/interfaces/wifi/1.2/vts/functional/ |
H A D | wifi_sta_iface_hidl_test.cpp | 32 using ::android::hardware::wifi::V1_0::CommandId; 102 const CommandId kCmd = 0; // Matches what WifiVendorHal.java uses. in TEST_P()
|
/aosp12/hardware/interfaces/wifi/1.4/vts/functional/ |
H A D | wifi_rtt_controller_hidl_test.cpp | 39 using ::android::hardware::wifi::V1_0::CommandId; 93 CommandId cmdId __unused, in onResults() 99 Return<void> onResults_1_4(CommandId cmdId __unused, in onResults_1_4()
|
/aosp12/hardware/interfaces/wifi/1.0/vts/functional/ |
H A D | wifi_sta_iface_hidl_test.cpp | 31 using ::android::hardware::wifi::V1_0::CommandId; 188 const CommandId kCmd = 1; in TEST_P()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/command/ |
H A D | SppCommandTest.java | 61 assertEquals(SppCommand.CommandId.EXEC, result.getSppCommandId()); in verifyLaunchBrowserCommand()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/ |
H A D | PasspointProvisionerTest.java | 252 when(mSppCommand.getSppCommandId()).thenReturn(SppCommand.CommandId.EXEC); in setUp() 363 when(mSppCommand.getSppCommandId()).thenReturn(SppCommand.CommandId.ADD_MO); in stopAfterStep()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/ |
H A D | PasspointProvisioner.java | 516 != SppCommand.CommandId.ADD_MO) { in handleSoapMessageResponse()
|