HomeSort by relevance Sort by last modified time
    Searched refs:phoneId (Results 26 - 47 of 47) sorted by null

12

  /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/
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 331 int phoneId = SubscriptionController.getInstance().getPhoneId(subId) ;
333 if (!SubscriptionManager.isValidPhoneId(phoneId)
334 || phoneId == SubscriptionManager.DEFAULT_PHONE_INDEX) {
335 phoneId = 0;
340 ((PhoneProxy)mPhone[(int)phoneId]).getIccSmsInterfaceManager();
PhoneSubInfoProxy.java 155 public String getDeviceIdForPhone(int phoneId) throws RemoteException {
WapPushOverSms.java 131 int phoneId = handler.getPhone().getPhoneId();
209 int [] subIds = SubscriptionManager.getSubId(phoneId);
252 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, phoneId);
293 SubscriptionManager.putPhoneIdAndSubIdExtra(intent, phoneId);
PhoneBase.java 395 * @param phoneId the phone-id of this phone.
398 boolean unitTestMode, int phoneId) {
399 mPhoneId = phoneId;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 787 * and have carrier privileges for the given phoneId.
790 * @param phoneId The phoneId on which the carrier app has carrier privileges.
791 * @return list of carrier app package names that can handle the intent on phoneId.
795 List<String> getCarrierPackageNamesForIntentAndPhone(in Intent intent, int phoneId);
906 * @param phoneId which phone you want to get
910 int getRadioAccessFamily(in int phoneId, String callingPackage);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 82 int phoneId) {
83 this(context, ci, notifier, false, phoneId);
87 boolean unitTestMode, int phoneId) {
88 super(context, ci, notifier, phoneId);
CDMAPhone.java 146 int phoneId) {
147 super("CDMA", notifier, context, ci, false, phoneId);
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 452 int phoneId = SubscriptionController.getInstance().getPhoneId(subId);
453 return PhoneFactory.getPhone(phoneId);
466 int phoneId = SubscriptionController.getInstance().getPhoneId(subIds[0]);
467 Phone phone = PhoneFactory.getPhone(phoneId);
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java     [all...]
PhoneUtils.java     [all...]
  /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);
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 270 int phoneId = mNotifications.size();
272 = FullScreenActivity.getPendingIntent(mContext, phoneId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCard.java 109 public UiccCard(Context c, CommandsInterface ci, IccCardStatus ics, int phoneId) {
111 mPhoneId = phoneId;
IccCardProxy.java 119 public IccCardProxy(Context context, CommandsInterface ci, int phoneId) {
120 if (DBG) log("ctor: ci=" + ci + " phoneId=" + phoneId);
123 mPhoneId = phoneId;
    [all...]
RuimRecords.java 795 int phoneId = mParentApp.getUiccCard().getPhoneId();
796 int[] subIds = SubscriptionController.getInstance().getSubId(phoneId);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java 305 final long phoneId = cursor.getLong(PhoneQuery.PHONE_ID);
306 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 175 GSMPhone(Context context, CommandsInterface ci, PhoneNotifier notifier, int phoneId) {
176 this(context, ci, notifier, false, phoneId);
181 PhoneNotifier notifier, boolean unitTestMode, int phoneId) {
182 super("GSM", notifier, context, ci, unitTestMode, phoneId);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java     [all...]

Completed in 1064 milliseconds

12