Loading src/java/com/android/internal/telephony/RadioIndication.java +10 −0 Original line number Diff line number Diff line Loading @@ -81,6 +81,7 @@ import android.hardware.radio.V1_0.SsInfoData; import android.hardware.radio.V1_0.StkCcUnsolSsResult; import android.hardware.radio.V1_0.SuppSvcNotification; import android.hardware.radio.V1_1.IRadioIndication; import android.hardware.radio.V1_1.KeepaliveStatus; import android.os.AsyncResult; import android.os.SystemProperties; import android.telephony.CellInfo; Loading Loading @@ -803,6 +804,15 @@ public class RadioIndication extends IRadioIndication.Stub { new AsyncResult(null, null, null)); } /** * Indicates a change in the status of an ongoing Keepalive session * @param indicationType RadioIndicationType * @param keepaliveStatus Status of the ongoing Keepalive session */ public void keepaliveStatus(int indicationType, KeepaliveStatus keepaliveStatus) { throw new UnsupportedOperationException("keepaliveStatus Indications are not implemented"); } private CommandsInterface.RadioState getRadioStateFromInt(int stateInt) { CommandsInterface.RadioState state; Loading src/java/com/android/internal/telephony/RadioResponse.java +17 −0 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ import android.hardware.radio.V1_0.SendSmsResult; import android.hardware.radio.V1_0.SetupDataCallResult; import android.hardware.radio.V1_0.VoiceRegStateResult; import android.hardware.radio.V1_1.IRadioResponse; import android.hardware.radio.V1_1.KeepaliveStatus; import android.os.AsyncResult; import android.os.Message; import android.os.SystemClock; Loading Loading @@ -1216,6 +1217,22 @@ public class RadioResponse extends IRadioResponse.Stub { responseVoid(responseInfo); } /** * @param responseInfo Response info struct containing response type, serial no. and error * @param keepaliveStatus status of the keepalive with a handle for the session */ public void startKeepaliveResponse(RadioResponseInfo responseInfo, KeepaliveStatus keepaliveStatus) { throw new UnsupportedOperationException("startKeepaliveResponse not implemented"); } /** * @param responseInfo Response info struct containing response type, serial no. and error */ public void stopKeepaliveResponse(RadioResponseInfo responseInfo) { throw new UnsupportedOperationException("stopKeepaliveResponse not implemented"); } private void responseIccCardStatus(RadioResponseInfo responseInfo, CardStatus cardStatus) { RILRequest rr = mRil.processResponse(responseInfo); Loading Loading
src/java/com/android/internal/telephony/RadioIndication.java +10 −0 Original line number Diff line number Diff line Loading @@ -81,6 +81,7 @@ import android.hardware.radio.V1_0.SsInfoData; import android.hardware.radio.V1_0.StkCcUnsolSsResult; import android.hardware.radio.V1_0.SuppSvcNotification; import android.hardware.radio.V1_1.IRadioIndication; import android.hardware.radio.V1_1.KeepaliveStatus; import android.os.AsyncResult; import android.os.SystemProperties; import android.telephony.CellInfo; Loading Loading @@ -803,6 +804,15 @@ public class RadioIndication extends IRadioIndication.Stub { new AsyncResult(null, null, null)); } /** * Indicates a change in the status of an ongoing Keepalive session * @param indicationType RadioIndicationType * @param keepaliveStatus Status of the ongoing Keepalive session */ public void keepaliveStatus(int indicationType, KeepaliveStatus keepaliveStatus) { throw new UnsupportedOperationException("keepaliveStatus Indications are not implemented"); } private CommandsInterface.RadioState getRadioStateFromInt(int stateInt) { CommandsInterface.RadioState state; Loading
src/java/com/android/internal/telephony/RadioResponse.java +17 −0 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ import android.hardware.radio.V1_0.SendSmsResult; import android.hardware.radio.V1_0.SetupDataCallResult; import android.hardware.radio.V1_0.VoiceRegStateResult; import android.hardware.radio.V1_1.IRadioResponse; import android.hardware.radio.V1_1.KeepaliveStatus; import android.os.AsyncResult; import android.os.Message; import android.os.SystemClock; Loading Loading @@ -1216,6 +1217,22 @@ public class RadioResponse extends IRadioResponse.Stub { responseVoid(responseInfo); } /** * @param responseInfo Response info struct containing response type, serial no. and error * @param keepaliveStatus status of the keepalive with a handle for the session */ public void startKeepaliveResponse(RadioResponseInfo responseInfo, KeepaliveStatus keepaliveStatus) { throw new UnsupportedOperationException("startKeepaliveResponse not implemented"); } /** * @param responseInfo Response info struct containing response type, serial no. and error */ public void stopKeepaliveResponse(RadioResponseInfo responseInfo) { throw new UnsupportedOperationException("stopKeepaliveResponse not implemented"); } private void responseIccCardStatus(RadioResponseInfo responseInfo, CardStatus cardStatus) { RILRequest rr = mRil.processResponse(responseInfo); Loading