Merge "Remove unused method removeAllQosPoliciesForScs from the Supplicant interface." into udc-dev

This commit is contained in:
Gabriel Biren
2023-03-13 16:16:14 +00:00
committed by Android (Google) Code Review
2 changed files with 0 additions and 17 deletions

View File

@@ -98,6 +98,5 @@ interface ISupplicantStaIface {
android.hardware.wifi.supplicant.SignalPollResult[] getSignalPollResults();
android.hardware.wifi.supplicant.QosPolicyScsRequestStatus[] addQosPolicyRequestForScs(in android.hardware.wifi.supplicant.QosPolicyScsData[] qosPolicyData);
android.hardware.wifi.supplicant.QosPolicyScsRequestStatus[] removeQosPolicyForScs(in byte[] scsPolicyIds);
android.hardware.wifi.supplicant.QosPolicyScsRequestStatus[] removeAllQosPoliciesForScs();
const int MAX_POLICIES_PER_QOS_SCS_REQUEST = 16;
}

View File

@@ -850,20 +850,4 @@ interface ISupplicantStaIface {
* being processed. Supplicant will only handle one request at a time.
*/
QosPolicyScsRequestStatus[] removeQosPolicyForScs(in byte[] scsPolicyIds);
/**
* Request the removal of all QoS policies for SCS configured by the STA.
*
* @return QosPolicyScsRequestStatus[] synchronously corresponding to all
* the scs policies.
* @throws ServiceSpecificException with one of the following values:
* |SupplicantStatusCode.FAILURE_UNKNOWN| if there are no policies to remove.
*
* |SupplicantStatusCode.FAILURE_UNSUPPORTED| if the AP does not support
* the feature.
*
* |SupplicantStatusCode.FAILURE_ONGOING_REQUEST| if a request is currently
* being processed. Supplicant will only handle one request at a time.
*/
QosPolicyScsRequestStatus[] removeAllQosPoliciesForScs();
}