HomeSort by relevance Sort by last modified time
    Searched defs:phoneId (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
UiccPhoneBookController.java 136 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
138 return mPhone[phoneId].getIccPhoneBookInterfaceManager();
PhoneSubInfoController.java 65 public String getDeviceIdForPhone(int phoneId, String callingPackage) {
69 if (!SubscriptionManager.isValidPhoneId(phoneId)) {
70 phoneId = 0;
72 final Phone phone = mPhone[phoneId];
76 loge("getDeviceIdForPhone phone " + phoneId + " is null");
271 int phoneId = SubscriptionManager.getPhoneId(subId);
272 if (!SubscriptionManager.isValidPhoneId(phoneId)) {
273 phoneId = 0;
275 return mPhone[phoneId];
CarrierServiceBindHelper.java 73 for (int phoneId = 0; phoneId < mBindings.length; phoneId++) {
74 mBindings[phoneId].rebind();
92 log("Rebinding if necessary for phoneId: " + binding.getPhoneId());
110 for (int phoneId = 0; phoneId < numPhones; phoneId++) {
111 mBindings[phoneId] = new AppBinding(phoneId);
    [all...]
UiccSmsController.java 331 int phoneId = SubscriptionController.getInstance().getPhoneId(subId) ;
333 if (!SubscriptionManager.isValidPhoneId(phoneId)
334 || phoneId == SubscriptionManager.DEFAULT_PHONE_INDEX) {
335 phoneId = 0;
340 ((Phone)mPhone[(int)phoneId]).getIccSmsInterfaceManager();
402 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
404 if (!SubscriptionManager.isValidPhoneId(phoneId)
405 || phoneId == SubscriptionManager.DEFAULT_PHONE_INDEX) {
406 phoneId = 0;
408 if (phoneId < 0 || phoneId >= mPhone.length || mPhone[phoneId] == null)
    [all...]
DefaultPhoneNotifier.java 55 int phoneId = sender.getPhoneId();
62 mRegistry.notifyCallStateForPhoneId(phoneId, subId,
74 int phoneId = sender.getPhoneId();
78 + " sender=" + sender + " phondId=" + phoneId + " subId=" + subId);
85 mRegistry.notifyServiceStateForPhoneId(phoneId, subId, ss);
94 int phoneId = sender.getPhoneId();
103 mRegistry.notifySignalStrengthForPhoneId(phoneId, subId,
113 int phoneId = sender.getPhoneId();
118 mRegistry.notifyMessageWaitingChangedForPhoneId(phoneId, subId,
PhoneSwitcher.java 315 for (int phoneId = 0; phoneId < mNumPhones; phoneId++) {
316 if (newActivePhones.contains(phoneId) == false) {
317 deactivate(phoneId);
322 for (int phoneId : newActivePhones) {
323 activate(phoneId);
333 private void deactivate(int phoneId) {
334 PhoneState state = mPhoneStates[phoneId];
337 log("deactivate " + phoneId);
    [all...]
ProxyController.java 172 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
174 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount()) {
175 mPhones[phoneId].registerForAllDataDisconnected(h, what, obj);
180 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
182 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount()) {
183 mPhones[phoneId].unregisterForAllDataDisconnected(h);
188 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
190 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount())
    [all...]
WapPushOverSms.java 176 int phoneId = handler.getPhone().getPhoneId();
257 int[] subIds = SubscriptionManager.getSubId(phoneId);
300 result.phoneId = phoneId;
362 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, result.phoneId);
393 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, result.phoneId);
627 int phoneId;
SubscriptionController.java 62 * Any setters which take subId, slotIndex or phoneId as a parameter will throw an exception if the
318 final int phoneId = getPhoneId(subId);
319 if (phoneId < 0) {
322 return mTelephonyManager.getSimCountryIsoForPhone(phoneId);
743 // If sSlotIndexToSubId already has a valid subId for a slotIndex/phoneId,
744 // do not add another subId for same slotIndex/phoneId.
751 // FIXME: Currently we assume phoneId == slotIndex which in the future
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
InProgressCallSession.java 33 public final int phoneId;
59 * @param phoneId Phone id
61 public InProgressCallSession(int phoneId) {
62 this.phoneId = phoneId;
InProgressSmsSession.java 34 public final int phoneId;
75 * @param phoneId Phone id
77 public InProgressSmsSession(int phoneId) {
78 this.phoneId = phoneId;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
TelephonyNetworkFactoryTest.java 107 private TelephonyNetworkFactory makeTnf(int phoneId, TestSetup ts) {
109 ts.subscriptionMonitorMock, ts.looper, ts.contextMock, phoneId, ts.dcTrackerMock);
138 final int phoneId = 0;
143 makeTnf(phoneId, ts);
146 ts.subscriptionControllerMock.setSlotSubId(phoneId, subId);
147 ts.subscriptionMonitorMock.notifySubscriptionChanged(phoneId);
148 ts.subscriptionMonitorMock.notifyDefaultSubscriptionChanged(phoneId);
157 log("setPhoneActive true: phoneId = " + phoneId);
158 ts.phoneSwitcherMock.setPhoneActive(phoneId, true)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
TelephonyRegistryMock.java 53 int phoneId = SubscriptionManager.INVALID_PHONE_INDEX;
71 + " callerUserId=" + callerUserId + " subId=" + subId + " phoneId=" + phoneId
192 public void notifyCallStateForPhoneId(int phoneId, int subId, int state,
198 public void notifyServiceStateForPhoneId(int phoneId, int subId, ServiceState state) {
203 public void notifySignalStrengthForPhoneId(int phoneId, int subId,
209 public void notifyMessageWaitingChangedForPhoneId(int phoneId, int subId, boolean mwi) {
316 public void notifySimActivationStateChangedForPhoneId(int phoneId, int subId,
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 270 int phoneId = mNotifications.size();
272 = FullScreenActivity.getPendingIntent(mContext, phoneId);
  /frameworks/base/telephony/java/android/telephony/
SubscriptionManager.java 926 if (VDBG) logd("[getPhoneId]- phoneId=" + result);
    [all...]
TelephonyManager.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
PhoneNumberListAdapter.java 350 * ContentUris.withAppendedId(Data.CONTENT_URI, phoneId), is invalid if
357 final long phoneId = cursor.getLong(PhoneQuery.PHONE_ID);
358 return ContentUris.withAppendedId(Data.CONTENT_URI, phoneId);
  /packages/services/Telephony/src/com/android/phone/
CarrierConfigLoader.java 94 // Carrier configs from default app, indexed by phoneID.
96 // Carrier configs from privileged carrier config app, indexed by phoneID.
144 // For each phoneId, the event sequence should be:
162 int phoneId = msg.arg1;
163 log("mHandler: " + msg.what + " phoneId: " + phoneId);
171 if (mConfigFromDefaultApp[phoneId] == null &&
172 mConfigFromCarrierApp[phoneId] == null)
174 mConfigFromDefaultApp[phoneId] = null;
175 mConfigFromCarrierApp[phoneId] = null
    [all...]
NotificationMgr.java 645 int phoneId = SubscriptionManager.getPhoneId(subId);
646 Phone phone = SubscriptionManager.isValidPhoneId(phoneId) ?
647 PhoneFactory.getPhone(phoneId) : PhoneFactory.getDefaultPhone();
PhoneGlobals.java 659 int phoneId = SubscriptionManager.getPhoneId(subId);
669 Phone phone = SubscriptionManager.isValidPhoneId(phoneId) ?
670 PhoneFactory.getPhone(phoneId) : PhoneFactory.getDefaultPhone();
713 int phoneId = intent.getIntExtra(PhoneConstants.PHONE_KEY, 0);
714 phoneInEcm = PhoneFactory.getPhone(phoneId);
715 Log.d(LOG_TAG, "Emergency Callback Mode. phoneId:" + phoneId);
    [all...]
PhoneInterfaceManager.java     [all...]
  /external/svox/pico/lib/
picocep.c 210 picoos_uint8 phoneId[PICOCEP_MAXWINLEN]; /* synchronised with indexReadPos */
    [all...]
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 73 * and 15973975 by saving the phoneId of the registrant and then using the
74 * phoneId when deciding to to make a callback. This is necessary because
102 int phoneId = SubscriptionManager.INVALID_PHONE_INDEX;
120 + " callerUserId=" + callerUserId + " subId=" + subId + " phoneId=" + phoneId
532 r.phoneId = SubscriptionManager.getPhoneId(r.subId);
534 int phoneId = r.phoneId;
537 log("listen: Register r=" + r + " r.subId=" + r.subId + " phoneId=" + phoneId);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 798 int phoneId = mParentApp.getUiccCard().getPhoneId();
799 int subId = SubscriptionController.getInstance().getSubIdUsingPhoneId(phoneId);
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java     [all...]

Completed in 1013 milliseconds

1 2