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

Commit 6a6b9df0 authored by Sarah Chin's avatar Sarah Chin Committed by Automerger Merge Worker
Browse files

Final API changes for IRadio am: f746a91d

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1965509

Change-Id: I912e81be10c7b5a627997c65b0a71c02068fa466
parents 5488a534 f746a91d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -62,6 +62,6 @@ parcelable DataProfileInfo {
  const int ID_OEM_BASE = 1000;
  const int ID_INVALID = -1;
  const int TYPE_COMMON = 0;
  const int TYPE_THREE_GPP = 1;
  const int TYPE_THREE_GPP2 = 2;
  const int TYPE_3GPP = 1;
  const int TYPE_3GPP2 = 2;
}
+0 −2
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@ interface IRadioMessaging {
  oneway void acknowledgeIncomingGsmSmsWithPdu(in int serial, in boolean success, in String ackPdu);
  oneway void acknowledgeLastIncomingCdmaSms(in int serial, in android.hardware.radio.messaging.CdmaSmsAck smsAck);
  oneway void acknowledgeLastIncomingGsmSms(in int serial, in boolean success, in android.hardware.radio.messaging.SmsAcknowledgeFailCause cause);
  oneway void cancelPendingUssd(in int serial);
  oneway void deleteSmsOnRuim(in int serial, in int index);
  oneway void deleteSmsOnSim(in int serial, in int index);
  oneway void getCdmaBroadcastConfig(in int serial);
@@ -50,7 +49,6 @@ interface IRadioMessaging {
  oneway void sendImsSms(in int serial, in android.hardware.radio.messaging.ImsSmsMessage message);
  oneway void sendSms(in int serial, in android.hardware.radio.messaging.GsmSmsMessage message);
  oneway void sendSmsExpectMore(in int serial, in android.hardware.radio.messaging.GsmSmsMessage message);
  oneway void sendUssd(in int serial, in String ussd);
  oneway void setCdmaBroadcastActivation(in int serial, in boolean activate);
  oneway void setCdmaBroadcastConfig(in int serial, in android.hardware.radio.messaging.CdmaBroadcastSmsConfigInfo[] configInfo);
  oneway void setGsmBroadcastActivation(in int serial, in boolean activate);
+0 −1
Original line number Diff line number Diff line
@@ -40,6 +40,5 @@ interface IRadioMessagingIndication {
  oneway void newSms(in android.hardware.radio.RadioIndicationType type, in byte[] pdu);
  oneway void newSmsOnSim(in android.hardware.radio.RadioIndicationType type, in int recordNumber);
  oneway void newSmsStatusReport(in android.hardware.radio.RadioIndicationType type, in byte[] pdu);
  oneway void onUssd(in android.hardware.radio.RadioIndicationType type, in android.hardware.radio.messaging.UssdModeType modeType, in String msg);
  oneway void simSmsStorageFull(in android.hardware.radio.RadioIndicationType type);
}
+0 −2
Original line number Diff line number Diff line
@@ -38,7 +38,6 @@ interface IRadioMessagingResponse {
  oneway void acknowledgeLastIncomingCdmaSmsResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void acknowledgeLastIncomingGsmSmsResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void acknowledgeRequest(in int serial);
  oneway void cancelPendingUssdResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void deleteSmsOnRuimResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void deleteSmsOnSimResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void getCdmaBroadcastConfigResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.messaging.CdmaBroadcastSmsConfigInfo[] configs);
@@ -50,7 +49,6 @@ interface IRadioMessagingResponse {
  oneway void sendImsSmsResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.messaging.SendSmsResult sms);
  oneway void sendSmsExpectMoreResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.messaging.SendSmsResult sms);
  oneway void sendSmsResponse(in android.hardware.radio.RadioResponseInfo info, in android.hardware.radio.messaging.SendSmsResult sms);
  oneway void sendUssdResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void setCdmaBroadcastActivationResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void setCdmaBroadcastConfigResponse(in android.hardware.radio.RadioResponseInfo info);
  oneway void setGsmBroadcastActivationResponse(in android.hardware.radio.RadioResponseInfo info);
+0 −39
Original line number Diff line number Diff line
/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
///////////////////////////////////////////////////////////////////////////////
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE.                          //
///////////////////////////////////////////////////////////////////////////////

// This file is a snapshot of an AIDL file. Do not edit it manually. There are
// two cases:
// 1). this is a frozen version file - do not edit this in any case.
// 2). this is a 'current' file. If you make a backwards compatible change to
//     the interface (from the latest frozen version), the build system will
//     prompt you to update this file with `m <name>-update-api`.
//
// You must not make a backward incompatible change to any AIDL file built
// with the aidl_interface module type with versions property set. The module
// type is used to build AIDL files in a way that they can be used across
// independently updatable components of the system. If a device is shipped
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.radio.network;
@VintfStability
parcelable NeighboringCell {
  String cid;
  int rssi;
}
Loading