Home
last modified time | relevance | path

Searched refs:numSlots (Results 1 – 3 of 3) sorted by relevance

/packages/services/Telephony/src/com/android/services/telephony/rcs/
DTelephonyRcsService.java152 Integer numSlots = (Integer) result.result;
153 if (numSlots == null) {
157 updateFeatureControllerSize(numSlots);
166 public TelephonyRcsService(Context context, int numSlots, FeatureFlags featureFlags) { in TelephonyRcsService() argument
168 mNumSlots = numSlots; in TelephonyRcsService()
169 mFeatureControllers = new SparseArray<>(numSlots); in TelephonyRcsService()
170 mSlotToAssociatedSubIds = new SparseArray<>(numSlots); in TelephonyRcsService()
177 public TelephonyRcsService(Context context, int numSlots, ResourceProxy resourceProxy, in TelephonyRcsService() argument
180 mNumSlots = numSlots; in TelephonyRcsService()
181 mFeatureControllers = new SparseArray<>(numSlots); in TelephonyRcsService()
[all …]
/packages/services/Telephony/src/com/android/phone/
DImsStateCallbackController.java237 Integer numSlots = (Integer) result.result; in handleMessage() local
238 if (numSlots == null) { in handleMessage()
242 updateFeatureControllerSize(numSlots); in handleMessage()
712 public static ImsStateCallbackController make(PhoneGlobals app, int numSlots) { in make() argument
719 sInstance = new ImsStateCallbackController(app, handlerThread.getLooper(), numSlots, in make()
728 public ImsStateCallbackController(PhoneGlobals app, Looper looper, int numSlots, in ImsStateCallbackController() argument
739 updateFeatureControllerSize(numSlots); in ImsStateCallbackController()
/packages/services/Telephony/tests/src/com/android/services/telephony/rcs/
DTelephonyRcsServiceTest.java368 private TelephonyRcsService createRcsService(int numSlots) { in createRcsService() argument
369 TelephonyRcsService service = new TelephonyRcsService(mContext, numSlots, mResourceProxy, in createRcsService()