/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
InboundSmsHandler.java | 152 /** Update phone object */ 162 // and notification id should be unique within the phone app. 200 protected Phone mPhone; 216 * @param context the context of the phone app 220 Phone phone, CellBroadcastHandler cellBroadcastHandler) { 225 mPhone = phone; 259 * Update the phone object when it changes. 261 public void updatePhoneObject(Phone phone) { [all...] |
ImsSMSDispatcher.java | 52 public ImsSMSDispatcher(Phone phone, SmsStorageMonitor storageMonitor, 54 super(phone, usageMonitor, null); 59 mCdmaDispatcher = new CdmaSMSDispatcher(phone, usageMonitor, this); 60 mGsmInboundSmsHandler = GsmInboundSmsHandler.makeInboundSmsHandler(phone.getContext(), 61 storageMonitor, phone); 62 mCdmaInboundSmsHandler = CdmaInboundSmsHandler.makeInboundSmsHandler(phone.getContext(), 63 storageMonitor, phone, (CdmaSMSDispatcher) mCdmaDispatcher); 64 mGsmDispatcher = new GsmSMSDispatcher(phone, usageMonitor, this, mGsmInboundSmsHandler); 65 SmsBroadcastUndelivered.initialize(phone.getContext() [all...] |
/device/generic/armv7-a-neon/ |
mini_common.mk | 32 Phone \
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfo.java | 27 import android.provider.ContactsContract.CommonDataKinds.Phone; 48 * Looks up caller information for the given phone number. 73 * connection. This is especially relevant for the phone number field, 219 info.phoneLabel = Phone.getDisplayLabel(context, 318 * getCallerInfo given a phone number, look up in the call-log database 321 * @param number the phone number used to lookup caller id 335 * getCallerInfo given a phone number and subscription, look up in the call-log database 338 * @param number the phone number used to lookup caller id 381 * @param number the original phone number, could be a SIP URI 420 // TODO: Note we're setting the phone number here (refer t [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DataConnection.java | 22 import com.android.internal.telephony.Phone; 153 private Phone mPhone; 234 * @param phone the Phone 238 public static DataConnection makeDataConnection(Phone phone, int id, 241 DataConnection dc = new DataConnection(phone, 389 private DataConnection(Phone phone, String name, int id, 397 mPhone = phone; [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmSMSDispatcher.java | 35 import com.android.internal.telephony.Phone; 62 public GsmSMSDispatcher(Phone phone, SmsUsageMonitor usageMonitor, 65 super(phone, usageMonitor, imsSMSDispatcher); 86 * Handles 3GPP format-specific events coming from the phone stack.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipPhoneBase.java | 35 import com.android.internal.telephony.Phone; 50 abstract class SipPhoneBase extends Phone { 163 * SIP phones do not have a subscription id, so do not notify of specific phone state changes. 522 Rlog.d(LOG_TAG, " ^^^ new phone state: " + mState);
|
SipPhone.java | 39 import com.android.internal.telephony.Phone; 93 public boolean equals(SipPhone phone) { 94 return getSipUri().equals(phone.getSipUri()); 162 " throw CallStateException(\"phone not ringing\")"); 164 throw new CallStateException("phone not ringing"); 178 " throw CallStateException(\"phone not ringing\")"); 180 throw new CallStateException("phone not ringing"); 481 public Phone getPhone() { 522 + ": " + this + " on phone " + getPhone()); 535 + ": " + this + " on phone " + getPhone()) [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardComposer.java | 33 import android.provider.ContactsContract.CommonDataKinds.Phone; 577 * Set a callback for phone number formatting. It will be called every time when this object 578 * receives a phone number for printing. 582 * and the callback should be responsible for everything about phone number formatting. 604 .appendPhones(contentValuesListMap.get(Phone.CONTENT_ITEM_TYPE),
|
VCardEntry.java | 33 import android.provider.ContactsContract.CommonDataKinds.Phone; 89 PHONE, 325 builder.withValueBackReference(Phone.RAW_CONTACT_ID, backReferenceIndex); 326 builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 328 builder.withValue(Phone.TYPE, mType); 329 if (mType == Phone.TYPE_CUSTOM) { 330 builder.withValue(Phone.LABEL, mLabel); 332 builder.withValue(Phone.NUMBER, mNumber); 334 builder.withValue(Phone.IS_PRIMARY, 1); 376 return EntryLabel.PHONE; [all...] |
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
VCardEntryTests.java | 46 import android.provider.ContactsContract.CommonDataKinds.Phone; 223 PhoneData phoneData = new PhoneData("1", Phone.TYPE_HOME, null, false);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
TextFieldsEditorView.java | 252 if (ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE.equals(kind.mimeType)) { 275 if (!ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE.equals(
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
CallerInfo.java | 27 import android.provider.ContactsContract.CommonDataKinds.Phone; 46 * Looks up caller information for the given phone number. 105 * connection. This is especially relevant for the phone number field, 259 info.phoneLabel = Phone.getTypeLabel(context.getResources(), 357 * @param number the original phone number, could be a SIP URI 418 // instead of the real phone number in the "number" 462 * preloaded with at least some phone numbers and SIP addresses. And 478 // (for example Phone.CONTENT_ITEM_TYPE would tell us to use the 496 // Direct lookup in the Phone table. 497 // MIME type: Phone.CONTENT_ITEM_TYPE (= "vnd.android.cursor.item/phone_v2" [all...] |
/packages/apps/Settings/src/com/android/settings/ |
IccLockSettings.java | 45 import com.android.internal.telephony.Phone; 103 private Phone mPhone;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandler.java | 26 import android.provider.ContactsContract.CommonDataKinds.Phone; 95 || Organization.COMPANY != Data.DATA1 || Phone.NUMBER != Data.DATA1
|
/packages/services/Mms/src/com/android/mms/service/ |
SendRequest.java | 37 import com.android.internal.telephony.Phone; 279 Phone phone = PhoneFactory.getDefaultPhone(); local 285 newToNumber = SmsNumberUtils.filterDestAddr(phone, toNumber);
|
/packages/services/Telephony/src/com/android/phone/ |
CallFeaturesSetting.java | 17 package com.android.phone; 52 import com.android.internal.telephony.Phone; 54 import com.android.phone.common.util.SettingsUtil; 55 import com.android.phone.settings.AccountSelectionPreference; 56 import com.android.phone.settings.PhoneAccountSettingsFragment; 57 import com.android.phone.settings.VoicemailSettingsActivity; 58 import com.android.phone.settings.fdn.FdnSetting; 68 * This preference screen is the root of the "Call settings" hierarchy available from the Phone 69 * app; the settings here let you control various features related to phone calls (including 71 * voice-capable phone devices [all...] |
OutgoingCallBroadcaster.java | 17 package com.android.phone; 45 import com.android.internal.telephony.Phone; 52 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers 76 public static final String ACTION_SIP_SELECT_PHONE = "com.android.phone.SIP_SELECT_PHONE"; 77 public static final String EXTRA_ALREADY_CALLED = "android.phone.extra.ALREADY_CALLED"; 78 public static final String EXTRA_ORIGINAL_URI = "android.phone.extra.ORIGINAL_URI"; 79 public static final String EXTRA_NEW_CALL_INTENT = "android.phone.extra.NEW_CALL_INTENT"; 80 public static final String EXTRA_SIP_PHONE_URI = "android.phone.extra.SIP_PHONE_URI"; 82 "android.phone.extra.ACTUAL_NUMBER_TO_DIAL"; 84 "android.phone.extra.THIRD_PARTY_CALL_COMPONENT" 191 final Phone phone = PhoneGlobals.getPhone(); local [all...] |
/packages/services/Telephony/src/com/android/phone/settings/ |
PhoneAccountSettingsFragment.java | 1 package com.android.phone.settings; 25 import com.android.internal.telephony.Phone; 26 import com.android.phone.PhoneUtils; 27 import com.android.phone.R; 28 import com.android.phone.SubscriptionInfoHelper; 58 * Value to start ordering of phone accounts relative to other preferences. By setting this 59 * value on the phone account listings, we ensure that anything that is ordered before 60 * {value} in the preference XML comes before the phone account list and anything with 99 * Here we make decisions about what we will and will not display with regards to phone- 216 * Handles a phone account selection for the default outgoing phone account [all...] |
/packages/services/Telephony/src/com/android/phone/settings/fdn/ |
FdnSetting.java | 17 package com.android.phone.settings.fdn; 34 import com.android.internal.telephony.Phone; 35 import com.android.phone.CallFeaturesSetting; 36 import com.android.phone.PhoneGlobals; 37 import com.android.phone.R; 38 import com.android.phone.SubscriptionInfoHelper; 41 * FDN settings UI for the Phone app. 51 private Phone mPhone;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccCardProxy.java | 45 import com.android.internal.telephony.Phone; 59 * The Phone App assumes that there is only one icc card, and one icc application 67 * created and destroyed dynamically during phone operation. 70 * phone object is constructed) to expose the current (based on voice radio technology) 174 int cdmaSource = Phone.CDMA_SUBSCRIPTION_UNKNOWN; 180 mCdmaSSM.getCdmaSubscriptionSource() : Phone.CDMA_SUBSCRIPTION_UNKNOWN; 182 newQuietMode = (cdmaSource == Phone.CDMA_SUBSCRIPTION_NV) 473 intent.putExtra(PhoneConstants.PHONE_NAME_KEY, "Phone"); 494 intent.putExtra(PhoneConstants.PHONE_NAME_KEY, "Phone"); [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
AccountType.java | 23 import android.provider.ContactsContract.CommonDataKinds.Phone; 348 * such as {@link Phone#TYPE_WORK}. Includes constraints on total number of 433 * {@link Phone#NUMBER}. Includes flags to apply to an {@link EditText}, and
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactFragment.java | 62 import android.provider.ContactsContract.CommonDataKinds.Phone; 378 if (Phone.CONTENT_ITEM_TYPE.equals(mimeType) && hasData) { 379 // Build phone entries 387 // Remember super-primary phone 393 if (entry.type == CommonDataKinds.Phone.TYPE_MOBILE 720 if (entry.mimetype.equals(Phone.CONTENT_ITEM_TYPE)
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ContactsSource.java | 31 import android.provider.ContactsContract.CommonDataKinds.Phone; 240 * such as {@link Phone#TYPE_WORK}. Includes constraints on total number of 291 * {@link Phone#NUMBER}. Includes flags to apply to an {@link EditText}, and
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
BaseContactsProvider2Test.java | 44 import android.provider.ContactsContract.CommonDataKinds.Phone; 261 return insertPhoneNumber(rawContactId, phoneNumber, primary, false, Phone.TYPE_HOME); 266 return insertPhoneNumber(rawContactId, phoneNumber, primary, superPrimary, Phone.TYPE_HOME); 278 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 279 values.put(Phone.NUMBER, phoneNumber); 280 values.put(Phone.TYPE, type); [all...] |