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

Commit 309090c5 authored by Sarah Chin's avatar Sarah Chin Committed by Android (Google) Code Review
Browse files

Merge "Remove REQUEST_NOT_SUPPORTED from IRadio"

parents 68d3f128 10443083
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -467,7 +467,7 @@
    </hal>
    <hal format="aidl" optional="true">
        <name>android.hardware.radio.modem</name>
        <version>1</version>
        <version>2</version>
        <interface>
            <name>IRadioModem</name>
            <instance>slot1</instance>
+9 −0
Original line number Diff line number Diff line
@@ -41,9 +41,18 @@ interface IRadioModem {
  oneway void getModemActivityInfo(in int serial);
  oneway void getModemStackStatus(in int serial);
  oneway void getRadioCapability(in int serial);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvReadItem(in int serial, in android.hardware.radio.modem.NvItem itemId);
  oneway void nvResetConfig(in int serial, in android.hardware.radio.modem.ResetNvType resetType);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvWriteCdmaPrl(in int serial, in byte[] prl);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvWriteItem(in int serial, in android.hardware.radio.modem.NvWriteItem item);
  oneway void requestShutdown(in int serial);
  oneway void responseAcknowledgement();
+9 −0
Original line number Diff line number Diff line
@@ -42,9 +42,18 @@ interface IRadioModemResponse {
  oneway void getModemActivityInfoResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.modem.ActivityStatsInfo activityInfo);
  oneway void getModemStackStatusResponse(in android.hardware.radio.RadioResponseInfo info, in boolean isEnabled);
  oneway void getRadioCapabilityResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.modem.RadioCapability rc);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvReadItemResponse(in android.hardware.radio.RadioResponseInfo info, in String result);
  oneway void nvResetConfigResponse(in android.hardware.radio.RadioResponseInfo info);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvWriteCdmaPrlResponse(in android.hardware.radio.RadioResponseInfo info);
  /**
   * @deprecated NV APIs are deprecated starting from Android U.
   */
  oneway void nvWriteItemResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void requestShutdownResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void sendDeviceStateResponse(in android.hardware.radio.RadioResponseInfo info);
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.radio.modem;
/**
 * @deprecated NV APIs are deprecated starting from Android U.
 */
@Backing(type="int") @JavaDerive(toString=true) @VintfStability
enum NvItem {
  CDMA_MEID = 1,
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.radio.modem;
/**
 * @deprecated NV APIs are deprecated starting from Android U.
 */
@JavaDerive(toString=true) @VintfStability
parcelable NvWriteItem {
  android.hardware.radio.modem.NvItem itemId;
Loading