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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
UiccPhoneBookController.java 131 long phoneId = SubscriptionController.getInstance().getPhoneId(subId);
133 return ((PhoneProxy)mPhone[(int)phoneId]).getIccPhoneBookInterfaceManagerProxy();
ProxyController.java 124 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
126 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount()) {
127 ((PhoneProxy) mProxyPhones[phoneId]).registerForAllDataDisconnected(h, what, obj);
132 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
134 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount()) {
135 ((PhoneProxy) mProxyPhones[phoneId]).unregisterForAllDataDisconnected(h);
140 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
142 if (phoneId >= 0 && phoneId < TelephonyManager.getDefault().getPhoneCount())
    [all...]
PhoneSubInfoController.java 210 long phoneId = SubscriptionManager.getPhoneId(subId);
211 if (phoneId < 0 || phoneId >= TelephonyManager.getDefault().getPhoneCount()) {
212 phoneId = 0;
216 return ((PhoneProxy)mPhone[(int)phoneId]).getPhoneSubInfoProxy();
DefaultPhoneNotifier.java 78 int phoneId = sender.getPhoneId();
82 + " sender=" + sender + " phondId=" + phoneId + " subId=" + subId);
89 mRegistry.notifyServiceStateForPhoneId(phoneId, subId, ss);
112 int phoneId = sender.getPhoneId();
117 mRegistry.notifyMessageWaitingChangedForPhoneId(phoneId, subId,
UiccSmsController.java 299 int phoneId = SubscriptionController.getInstance().getPhoneId(subId) ;
301 if (!SubscriptionManager.isValidPhoneId(phoneId)
302 || phoneId == SubscriptionManager.DEFAULT_PHONE_ID) {
303 phoneId = 0;
308 ((PhoneProxy)mPhone[(int)phoneId]).getIccSmsInterfaceManager();
WapPushOverSms.java 124 int phoneId = handler.getPhone().getPhoneId();
202 long [] subIds = SubscriptionManager.getSubId(phoneId);
242 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, phoneId);
283 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, phoneId);
PhoneFactory.java 206 public static Phone getCdmaPhone(int phoneId) {
209 phone = new CDMALTEPhone(sContext, sCommandsInterfaces[phoneId],
210 sPhoneNotifier, phoneId);
215 public static Phone getGsmPhone(int phoneId) {
217 Phone phone = new GSMPhone(sContext, sCommandsInterfaces[phoneId],
218 sPhoneNotifier, phoneId);
232 public static Phone getPhone(int phoneId) {
238 } else if (phoneId == SubscriptionManager.DEFAULT_PHONE_ID) {
239 Rlog.d(LOG_TAG, "getPhone: phoneId == DEFAULT_PHONE_ID");
242 Rlog.d(LOG_TAG, "getPhone: phoneId != DEFAULT_PHONE_ID")
    [all...]
SubscriptionController.java 57 * Any setters which take subId, slotId or phoneId as a parameter will throw an exception if the
595 // If mSimInfo already has a valid subId for a slotId/phoneId,
596 // do not add another subId for same slotId/phoneId.
602 // FIXME: Currently we assume phoneId and slotId may not be true
735 int phoneId = getPhoneId(subId);
737 if (number == null || phoneId < 0 ||
738 phoneId >= TelephonyManager.getDefault().getPhoneCount()) {
746 Phone phone = sProxyPhones[phoneId];
    [all...]
  /external/srec/tools/grxmlcompile/
sub_phon.cpp 33 int ii, wordId, phoneId, currId, newId, nextId, arcCount;
82 phoneId = doc.addPhonemeToList( modelLabel );
83 arcOne= CreateArc (phoneId, NONE_LABEL, currId, newId);
84 if (phoneId == intraId)
87 arcOne->AssignCentre (phoneId);
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 166 int phoneId = mNotifications.size();
167 final PendingIntent fullscreenIntent = FullScreenActivity.getPendingIntent(this, phoneId);
177 PhoneService.getPendingIntent(this, phoneId, PhoneService.ACTION_ANSWER))
179 PhoneService.getPendingIntent(this, phoneId, PhoneService.ACTION_IGNORE))
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 385 int phoneId = SubscriptionController.getInstance().getPhoneId(
387 return PhoneFactory.getPhone(phoneId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DctController.java 132 int phoneId = SubscriptionManager.getPhoneId(subId);
133 mDcSwitchState[phoneId].notifyDataConnection(phoneId, state, reason,
145 int phoneId = SubscriptionManager.getPhoneId(subId);
146 logd("DataStateReceiver: phoneId= " + phoneId);
154 if (!SubscriptionManager.isValidPhoneId(phoneId)) {
155 logd("DataStateReceiver: ignore invalid phoneId=" + phoneId);
159 boolean prevPowerOff = mServicePowerOffFlag[phoneId];
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java 286 final long phoneId = cursor.getLong(PhoneQuery.PHONE_ID);
287 return ContentUris.withAppendedId(Data.CONTENT_URI, phoneId);
  /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 72 * and 15973975 by saving the phoneId of the registrant and then using the
73 * phoneId when deciding to to make a callback. This is necessary because
100 int phoneId;
105 " phoneId=" + phoneId + " events=" + Integer.toHexString(events) + "}";
342 r.phoneId = SubscriptionManager.getPhoneId(r.subId);
348 int phoneId = r.phoneId;
351 log("listen: r=" + r + " r.subId=" + r.subId + " phoneId=" + phoneId);
    [all...]
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java     [all...]

Completed in 960 milliseconds