Home
last modified time | relevance | path

Searched refs:featureType (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/telephony/java/android/telephony/ims/
DImsService.java123 public int startSession(int slotId, int featureType, PendingIntent incomingCallIntent,
127 MMTelFeature feature = resolveMMTelFeature(slotId, featureType);
136 public void endSession(int slotId, int featureType, int sessionId) throws RemoteException {
139 MMTelFeature feature = resolveMMTelFeature(slotId, featureType);
147 public boolean isConnected(int slotId, int featureType, int callSessionType, int callType)
151 MMTelFeature feature = resolveMMTelFeature(slotId, featureType);
160 public boolean isOpened(int slotId, int featureType) throws RemoteException {
163 MMTelFeature feature = resolveMMTelFeature(slotId, featureType);
172 public int getFeatureStatus(int slotId, int featureType) throws RemoteException {
178 ImsFeature feature = getImsFeatureFromType(featureMap, featureType);
[all …]
DImsServiceProxy.java101 public ImsServiceProxy(int slotId, IBinder binder, int featureType) { in ImsServiceProxy() argument
103 mSupportedFeature = featureType; in ImsServiceProxy()
106 public ImsServiceProxy(int slotId, int featureType) { in ImsServiceProxy() argument
108 mSupportedFeature = featureType; in ImsServiceProxy()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsServiceController.aidl42 int startSession(int slotId, int featureType, in PendingIntent incomingCallIntent, in startSession() argument
44 void endSession(int slotId, int featureType, int sessionId); in endSession() argument
45 boolean isConnected(int slotId, int featureType, int callSessionType, int callType); in isConnected() argument
46 boolean isOpened(int slotId, int featureType); in isOpened() argument
47 int getFeatureStatus(int slotId, int featureType); in getFeatureStatus() argument
48 void addRegistrationListener(int slotId, int featureType, in IImsRegistrationListener listener); in addRegistrationListener() argument
49 void removeRegistrationListener(int slotId, int featureType, in removeRegistrationListener() argument
51 ImsCallProfile createCallProfile(int slotId, int featureType, int sessionId, in createCallProfile() argument
53 IImsCallSession createCallSession(int slotId, int featureType, int sessionId, in createCallSession() argument
55 IImsCallSession getPendingCallSession(int slotId, int featureType, int sessionId, in getPendingCallSession() argument
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DTestImsServiceControllerAdapter.java61 public int startSession(int slotId, int featureType, PendingIntent incomingCallIntent, in startSession() argument
67 public void endSession(int slotId, int featureType, int sessionId) throws RemoteException { in endSession() argument
72 public boolean isConnected(int slotId, int featureType, int callSessionType, int callType) in isConnected() argument
78 public boolean isOpened(int slotId, int featureType) throws RemoteException { in isOpened() argument
83 public int getFeatureStatus(int slotId, int featureType) throws RemoteException { in getFeatureStatus() argument
88 public void addRegistrationListener(int slotId, int featureType, in addRegistrationListener() argument
94 public void removeRegistrationListener(int slotId, int featureType, in removeRegistrationListener() argument
100 public ImsCallProfile createCallProfile(int slotId, int featureType, int sessionId, in createCallProfile() argument
106 public IImsCallSession createCallSession(int slotId, int featureType, int sessionId, in createCallSession() argument
112 public IImsCallSession getPendingCallSession(int slotId, int featureType, int sessionId, in getPendingCallSession() argument
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DImsServiceController.java193 ImsFeatureStatusCallback(int slotId, int featureType) { in ImsFeatureStatusCallback() argument
195 mFeatureType = featureType; in ImsFeatureStatusCallback()