Home
last modified time | relevance | path

Searched refs:cancelHandover (Results 1 – 14 of 14) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/
DDataServiceManagerTest.java257 mDataServiceManagerUT.cancelHandover(123, message); in testCancelHandover()
259 verify(mSimulatedCommandsVerifier).cancelHandover(any(Message.class), anyInt()); in testCancelHandover()
266 mDataServiceManagerUT.cancelHandover(123, message); in testCancelHandoverServiceNotBound()
268 verify(mSimulatedCommandsVerifier, never()).cancelHandover(any(Message.class), anyInt()); in testCancelHandoverServiceNotBound()
DDataNetworkTest.java412 }).when(mDataServiceManagers.get(transport)).cancelHandover(anyInt(), in setUp()
1165 verify(mMockedWwanDataServiceManager).cancelHandover(eq(123), any(Message.class)); in testHandoverFailed()
DDataNetworkControllerTest.java936 }).when(mMockedDataServiceManagers.get(transport)).cancelHandover(anyInt(), in setUp()
/frameworks/base/telephony/java/android/telephony/data/
DIDataService.aidl48 void cancelHandover(int slotId, int cid, IDataServiceCallback callback); in cancelHandover() method
DDataService.java351 public void cancelHandover(int cid, @NonNull DataServiceCallback callback) { in cancelHandover() method in DataService.DataServiceProvider
712 serviceProvider.cancelHandover(cReq.cid, in handleMessage()
896 public void cancelHandover(int slotIndex, int cid, IDataServiceCallback callback) { in cancelHandover() method in DataService.IDataServiceWrapper
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioDataProxy.java110 public void cancelHandover(int serial, int callId) throws RemoteException { in cancelHandover() method in RadioDataProxy
113 mDataProxy.cancelHandover(serial, callId); in cancelHandover()
115 ((android.hardware.radio.V1_6.IRadio) mRadioProxy).cancelHandover(serial, callId); in cancelHandover()
DCommandsInterface.java2588 default void cancelHandover(Message result, int callId) {}; in cancelHandover() method
DRIL.java4739 public void cancelHandover(Message result, int callId) { in cancelHandover() method in RIL
4751 dataProxy.cancelHandover(rr.mSerial, callId); in cancelHandover()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DCellularDataService.java266 public void cancelHandover(int cid, @Nullable DataServiceCallback callback) { in cancelHandover() method in CellularDataService.CellularDataServiceProvider
274 mPhone.mCi.cancelHandover(message, cid); in cancelHandover()
DDataServiceManager.java745 public void cancelHandover(int cid, @NonNull Message onCompleteMessage) { in cancelHandover() method in DataServiceManager
758 mIDataService.cancelHandover(mPhone.getPhoneId(), cid, callback); in cancelHandover()
DDataNetwork.java3667 mDataServiceManagers.get(mTransport).cancelHandover(mCid.get(mTransport),
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java646 public void cancelHandover(Message result, int callId) { in cancelHandover() method in ImsPhoneCommandInterface
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimulatedCommandsVerifier.java1476 public void cancelHandover(Message result, int callId) { in cancelHandover() method in SimulatedCommandsVerifier
DSimulatedCommands.java2031 public void cancelHandover(Message result, int callId) { in cancelHandover() method in SimulatedCommands
2032 SimulatedCommandsVerifier.getInstance().cancelHandover(result, callId); in cancelHandover()