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

1 2

  /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...]
DcSwitchState.java 117 public void notifyDataConnection(int phoneId, String state, String reason,
119 if (phoneId == mId &&
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
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...]
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...]
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();
UiccPhoneBookController.java 131 long phoneId = SubscriptionController.getInstance().getPhoneId(subId);
133 return ((PhoneProxy)mPhone[(int)phoneId]).getIccPhoneBookInterfaceManagerProxy();
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);
PhoneBase.java 341 boolean unitTestMode, int phoneId) {
342 mPhoneId = phoneId;
    [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/
SubscriptionManager.java 698 if (VDBG) logd("[getPhoneId]- phoneId=" + result);
941 public static boolean isValidPhoneId(int phoneId) {
942 // We are testing INVALID_PHONE_ID and phoneId >= 0 independently because we should
945 return phoneId != INVALID_PHONE_ID && phoneId >= 0 &&
946 phoneId < TelephonyManager.getDefault().getPhoneCount();
950 public static void putPhoneIdAndSubIdExtra(Intent intent, int phoneId) {
951 long[] subIds = SubscriptionManager.getSubId(phoneId);
953 putPhoneIdAndSubIdExtra(intent, phoneId, subIds[0]);
960 public static void putPhoneIdAndSubIdExtra(Intent intent, int phoneId, long subId)
    [all...]
TelephonyManager.java     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 37 void notifyServiceStateForPhoneId(in int phoneId, in long subId, in ServiceState state);
40 void notifyMessageWaitingChangedForPhoneId(in int phoneId, in long subId, in boolean mwi);
  /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))
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 88 int phoneId) {
89 this(context, ci, notifier, false, phoneId);
93 boolean unitTestMode, int phoneId) {
94 super(context, ci, notifier, phoneId);
CDMAPhone.java 154 int phoneId) {
155 super("CDMA", notifier, context, ci, false, 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/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaListTests.java 146 static ContentValues buildPhone(long phoneId) {
147 return buildPhone(phoneId, Long.toString(phoneId));
150 static ContentValues buildPhone(long phoneId, String value) {
152 values.put(Data._ID, phoneId);
RawContactDeltaTests.java 68 public static RawContact getRawContact(Context context, long contactId, long phoneId) {
75 phone.put(Data._ID, phoneId);
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 385 int phoneId = SubscriptionController.getInstance().getPhoneId(
387 return PhoneFactory.getPhone(phoneId);
  /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/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 183 GSMPhone (Context context, CommandsInterface ci, PhoneNotifier notifier, int phoneId) {
184 this(context, ci, notifier, false, phoneId);
189 PhoneNotifier notifier, boolean unitTestMode, int phoneId) {
190 super("GSM", notifier, context, ci, unitTestMode, phoneId);
    [all...]

Completed in 868 milliseconds

1 2