Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a224caed authored by Gabriel Biren's avatar Gabriel Biren Committed by Android (Google) Code Review
Browse files

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

parents f0884575 6fb8e8d4
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -98,6 +98,5 @@ interface ISupplicantStaIface {
  android.hardware.wifi.supplicant.SignalPollResult[] getSignalPollResults();
  android.hardware.wifi.supplicant.SignalPollResult[] getSignalPollResults();
  android.hardware.wifi.supplicant.QosPolicyScsRequestStatus[] addQosPolicyRequestForScs(in android.hardware.wifi.supplicant.QosPolicyScsData[] qosPolicyData);
  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[] removeQosPolicyForScs(in byte[] scsPolicyIds);
  android.hardware.wifi.supplicant.QosPolicyScsRequestStatus[] removeAllQosPoliciesForScs();
  const int MAX_POLICIES_PER_QOS_SCS_REQUEST = 16;
  const int MAX_POLICIES_PER_QOS_SCS_REQUEST = 16;
}
}
+0 −16
Original line number Original line Diff line number Diff line
@@ -850,20 +850,4 @@ interface ISupplicantStaIface {
     *          being processed. Supplicant will only handle one request at a time.
     *          being processed. Supplicant will only handle one request at a time.
     */
     */
    QosPolicyScsRequestStatus[] removeQosPolicyForScs(in byte[] scsPolicyIds);
    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();
}
}