Loading src/java/com/android/ims/ImsManager.java +9 −0 Original line number Diff line number Diff line Loading @@ -3084,6 +3084,15 @@ public class ImsManager implements FeatureUpdates { } } public void onMemoryAvailable(int token) throws ImsException { try { mMmTelConnectionRef.get().onMemoryAvailable(token); } catch (RemoteException e) { throw new ImsException("onMemoryAvailable()", e, ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN); } } public void acknowledgeSms(int token, int messageRef, int result) throws ImsException { try { mMmTelConnectionRef.get().acknowledgeSms(token, messageRef, result); Loading src/java/com/android/ims/MmTelFeatureConnection.java +7 −0 Original line number Diff line number Diff line Loading @@ -506,6 +506,13 @@ public class MmTelFeatureConnection extends FeatureConnection { } } public void onMemoryAvailable(int token) throws RemoteException { synchronized (mLock) { checkServiceIsReady(); getServiceInterface(mBinder).onMemoryAvailable(token); } } public void acknowledgeSms(int token, int messageRef, @ImsSmsImplBase.SendStatusResult int result) throws RemoteException { synchronized (mLock) { Loading Loading
src/java/com/android/ims/ImsManager.java +9 −0 Original line number Diff line number Diff line Loading @@ -3084,6 +3084,15 @@ public class ImsManager implements FeatureUpdates { } } public void onMemoryAvailable(int token) throws ImsException { try { mMmTelConnectionRef.get().onMemoryAvailable(token); } catch (RemoteException e) { throw new ImsException("onMemoryAvailable()", e, ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN); } } public void acknowledgeSms(int token, int messageRef, int result) throws ImsException { try { mMmTelConnectionRef.get().acknowledgeSms(token, messageRef, result); Loading
src/java/com/android/ims/MmTelFeatureConnection.java +7 −0 Original line number Diff line number Diff line Loading @@ -506,6 +506,13 @@ public class MmTelFeatureConnection extends FeatureConnection { } } public void onMemoryAvailable(int token) throws RemoteException { synchronized (mLock) { checkServiceIsReady(); getServiceInterface(mBinder).onMemoryAvailable(token); } } public void acknowledgeSms(int token, int messageRef, @ImsSmsImplBase.SendStatusResult int result) throws RemoteException { synchronized (mLock) { Loading