Home
last modified time | relevance | path

Searched refs:slotId (Results 1 – 25 of 25) sorted by relevance

/frameworks/base/telephony/java/android/telephony/ims/
DImsService.java105 public void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c)
109 onCreateImsFeatureInternal(slotId, feature, c);
114 public void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c)
118 onRemoveImsFeatureInternal(slotId, feature, c);
123 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);
[all …]
DImsServiceProxy.java64 public void imsFeatureCreated(int slotId, int feature) throws RemoteException {
67 if (!mIsAvailable && mSlotId == slotId && feature == mSupportedFeature) {
68 Log.i(LOG_TAG, "Feature enabled on slotId: " + slotId + " for feature: " +
76 public void imsFeatureRemoved(int slotId, int feature) throws RemoteException {
78 if (mIsAvailable && mSlotId == slotId && feature == mSupportedFeature) {
79 Log.i(LOG_TAG, "Feature disabled on slotId: " + slotId + " for feature: " +
87 public void imsStatusChanged(int slotId, int feature, int status) throws RemoteException {
89 Log.i(LOG_TAG, "imsStatusChanged: slot: " + slotId + " feature: " + feature +
91 if (mSlotId == slotId && feature == mSupportedFeature) {
101 public ImsServiceProxy(int slotId, IBinder binder, int featureType) { in ImsServiceProxy() argument
[all …]
DImsServiceProxyCompat.java50 public ImsServiceProxyCompat(int slotId, IBinder binder) { in ImsServiceProxyCompat() argument
51 mSlotId = slotId; in ImsServiceProxyCompat()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsServiceController.aidl39 void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c); in createImsFeature() argument
40 void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c); in removeImsFeature() argument
42 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
[all …]
DIImsServiceFeatureListener.aidl25 void imsFeatureCreated(int slotId, int feature); in imsFeatureCreated() argument
26 void imsFeatureRemoved(int slotId, int feature); in imsFeatureRemoved() argument
27 void imsStatusChanged(int slotId, int feature, int status); in imsStatusChanged() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DTestImsServiceControllerAdapter.java48 public void createImsFeature(int slotId, int feature, IImsFeatureStatusCallback c) in createImsFeature() argument
50 TestImsServiceControllerAdapter.this.createImsFeature(slotId, feature); in createImsFeature()
55 public void removeImsFeature(int slotId, int feature, IImsFeatureStatusCallback c) in removeImsFeature() argument
57 TestImsServiceControllerAdapter.this.removeImsFeature(slotId, feature); in removeImsFeature()
61 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
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java273 int slotId = uObj.slotId; in handleMessage() local
274 logd("handleMessage : <EVENT_SIM_LOCKED_QUERY_ICCID_DONE> SIM" + (slotId + 1)); in handleMessage()
278 mIccId[slotId] = IccUtils.bcdToString(data, 0, data.length); in handleMessage()
281 mIccId[slotId] = ICCID_STRING_FOR_NO_SIM; in handleMessage()
284 mIccId[slotId] = ICCID_STRING_FOR_NO_SIM; in handleMessage()
287 logd("sIccId[" + slotId + "] = " + mIccId[slotId]); in handleMessage()
291 broadcastSimStateChanged(slotId, IccCardConstants.INTENT_VALUE_ICC_LOCKED, in handleMessage()
293 if (!ICCID_STRING_FOR_NO_SIM.equals(mIccId[slotId])) { in handleMessage()
294 updateCarrierServices(slotId, IccCardConstants.INTENT_VALUE_ICC_LOCKED); in handleMessage()
301 Integer slotId = (Integer)ar.userObj; in handleMessage() local
[all …]
DCommandsInterface.java1910 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus, in setUiccSubscription() argument
DBaseCommands.java844 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus, in setUiccSubscription() argument
DRIL.java3253 public void setUiccSubscription(int slotId, int appIndex, int subId, in setUiccSubscription() argument
3262 + " slot = " + slotId + " appIndex = " + appIndex in setUiccSubscription()
3267 info.slot = slotId; in setUiccSubscription()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DImsResolver.java165 int getSubId(int slotId); in getSubId() argument
174 public int getSubId(int slotId) {
175 int[] subIds = SubscriptionManager.getSubId(slotId);
309 public IImsServiceController getImsServiceControllerAndListen(int slotId, int feature, in getImsServiceControllerAndListen() argument
311 if (slotId < 0 || slotId >= mNumSlots || feature <= ImsFeature.INVALID in getImsServiceControllerAndListen()
317 SparseArray<ImsServiceController> services = mBoundImsServicesByFeature.get(slotId); in getImsServiceControllerAndListen()
330 private void putImsController(int slotId, int feature, ImsServiceController controller) { in putImsController() argument
331 if (slotId < 0 || slotId >= mNumSlots || feature <= ImsFeature.INVALID in putImsController()
333 Log.w(TAG, "putImsController received invalid parameters - slot: " + slotId in putImsController()
338 SparseArray<ImsServiceController> services = mBoundImsServicesByFeature.get(slotId); in putImsController()
[all …]
DImsServiceController.java132 void imsServiceFeatureCreated(int slotId, int feature, ImsServiceController controller); in imsServiceFeatureCreated() argument
136 void imsServiceFeatureRemoved(int slotId, int feature, ImsServiceController controller); in imsServiceFeatureRemoved() argument
193 ImsFeatureStatusCallback(int slotId, int featureType) { in ImsFeatureStatusCallback() argument
194 mSlotId = slotId; in ImsFeatureStatusCallback()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DRilMessageDecoder.java59 int slotId) { in getInstance() argument
68 if (slotId != SubscriptionManager.INVALID_SIM_SLOT_INDEX && slotId < mSimCount) { in getInstance()
69 if (null == mInstance[slotId]) { in getInstance()
70 mInstance[slotId] = new RilMessageDecoder(caller, fh); in getInstance()
73 CatLog.d("RilMessageDecoder", "invaild slot id: " + slotId); in getInstance()
77 return mInstance[slotId]; in getInstance()
DCatService.java131 Context context, IccFileHandler fh, UiccCard ic, int slotId) { in CatService() argument
139 mSlotId = slotId; in CatService()
140 mHandlerThread = new HandlerThread("Cat Telephony service" + slotId); in CatService()
144 mMsgDecoder = RilMessageDecoder.getInstance(this, fh, slotId); in CatService()
189 Context context, UiccCard ic, int slotId) { in getInstance() argument
212 if (sInstance[slotId] == null) { in getInstance()
218 sInstance[slotId] = new CatService(ci, ca, ir, context, fh, ic, slotId); in getInstance()
221 mIccRecords.unregisterForRecordsLoaded(sInstance[slotId]); in getInstance()
227 mIccRecords.registerForRecordsLoaded(sInstance[slotId], in getInstance()
229 CatLog.d(sInstance[slotId], "registerForRecordsLoaded slotid=" + slotId in getInstance()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
DTestImsService.java46 public MMTelFeature onCreateEmergencyMMTelImsFeature(int slotId) { in onCreateEmergencyMMTelImsFeature() argument
51 public MMTelFeature onCreateMMTelImsFeature(int slotId) { in onCreateMMTelImsFeature() argument
56 public RcsFeature onCreateRcsFeature(int slotId) { in onCreateRcsFeature() argument
/frameworks/base/telephony/java/android/telephony/ims/feature/
DImsFeature.java102 void onFeatureRemoved(int slotId); in onFeatureRemoved() argument
109 public void setSlotId(int slotId) { in setSlotId() argument
110 mSlotId = slotId; in setSlotId()
126 public void notifyFeatureRemoved(int slotId) { in notifyFeatureRemoved() argument
128 mRemovedListeners.forEach(l -> l.onFeatureRemoved(slotId)); in notifyFeatureRemoved()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java361 cb.onSimStateChanged(data.subId, data.slotId, data.simState); in handleSimSubscriptionInfoChanged()
682 + " slotId: " + args.slotId + " subid: " + args.subId);
684 mHandler.obtainMessage(MSG_SIM_STATE_CHANGE, args.subId, args.slotId, args.simState)
787 public int slotId; field in KeyguardUpdateMonitor.SimData
792 slotId = slot; in SimData()
802 int slotId = intent.getIntExtra(PhoneConstants.SLOT_KEY, 0); in fromIntent() local
837 return new SimData(state, slotId, subId); in fromIntent()
842 return "SimData{state=" + simState + ",slotId=" + slotId + ",subId=" + subId + "}"; in toString()
1377 private void handleSimStateChange(int subId, int slotId, State state) { in handleSimStateChange() argument
1381 + slotId + ", state=" + state +")"); in handleSimStateChange()
[all …]
DKeyguardUpdateMonitorCallback.java123 public void onSimStateChanged(int subId, int slotId, IccCardConstants.State simState) { } in onSimStateChanged() argument
DEmergencyButton.java64 public void onSimStateChanged(int subId, int slotId, State simState) {
DKeyguardSimPinView.java60 public void onSimStateChanged(int subId, int slotId, State simState) {
DKeyguardSimPukView.java62 public void onSimStateChanged(int subId, int slotId, State simState) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DSubscriptionControllerMock.java246 public List<SubscriptionInfo> getSubInfoUsingSlotIndexWithCheck(int slotId, boolean needCheck, in getSubInfoUsingSlotIndexWithCheck() argument
/frameworks/base/telephony/java/android/telephony/
DPhoneNumberUtils.java1905 int slotId = SubscriptionManager.getSlotIndex(subId); in isEmergencyNumberInternal() local
1909 String ecclist = (slotId <= 0) ? "ril.ecclist" : ("ril.ecclist" + slotId); in isEmergencyNumberInternal()
1913 Rlog.d(LOG_TAG, "slotId:" + slotId + " subId:" + subId + " country:" in isEmergencyNumberInternal()
1947 emergencyNumbers = ((slotId < 0) ? "112,911,000,08,110,118,119,999" : "112,911"); in isEmergencyNumberInternal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java413 public void onSimStateChanged(int subId, int slotId, IccCardConstants.State simState) {
416 Log.d(TAG, "onSimStateChanged(subId=" + subId + ", slotId=" + slotId
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommandsVerifier.java1275 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus, in setUiccSubscription() argument