HomeSort by relevance Sort by last modified time
    Searched full:phone (Results 426 - 450 of 867) sorted by null

<<11121314151617181920>>

  /system/extras/tests/sdcard/
testcase.cpp 49 // Make sure the cpu and phone are fully awake. The
51 // anything. Also the partial wake lock is a nop if the phone
  /packages/apps/Tag/src/com/android/vcard/
VCardEntry.java 33 import android.provider.ContactsContract.CommonDataKinds.Phone;
501 if (type == Phone.TYPE_PAGER || VCardConfig.refrainPhoneNumberFormatting(mVCardType)) {
    [all...]
  /development/testrunner/
test_defs.xml 466 <!-- Unit tests for the phone application. -->
467 <test name="phone-unit"
468 build_path="packages/apps/Phone"
469 package="com.android.phone.tests"
471 coverage_target="Phone" />
  /frameworks/base/location/java/android/location/
Address.java 362 * Returns the phone number of the address if known,
373 * Sets the phone number associated with this address.
375 public void setPhone(String phone) {
376 mPhone = phone;
465 sb.append(",phone=");
  /frameworks/base/telephony/java/com/android/internal/telephony/
BaseCommands.java 91 // Type of Phone, GSM or CDMA. Set by CDMAPhone or GSMPhone.
671 * current phone is determined by mPhoneType
672 * NOTE: at startup no phone have been created and the RIL determines the mPhoneType
681 if (mState.isGsm() && !oldState.isOn() && (mPhoneType == Phone.PHONE_TYPE_CDMA)) {
691 if (mState.isCdma() && !oldState.isOn() && (mPhoneType == Phone.PHONE_TYPE_GSM)) {
SMSDispatcher.java 115 protected Phone mPhone;
218 protected SMSDispatcher(PhoneBase phone) {
219 mPhone = phone;
220 mWapPush = new WapPushOverSms(phone, this);
221 mContext = phone.getContext();
223 mCm = phone.mCM;
264 * persistent manner. If the phone process restarts (reboot or crash),
272 * Handles events coming from the phone stack. Overridden from handler.
513 * Handles outbound message when the phone is not in service.
536 * @param sms the incoming message from the phone
    [all...]
DataConnection.java 256 protected PhoneBase phone; field in class:DataConnection
281 protected DataConnection(PhoneBase phone, String name) {
284 this.phone = phone;
308 if (phone.mCM.getRadioState().isOn()) {
310 phone.mCM.deactivateDataCall(cid, obtainMessage(EVENT_DEACTIVATE_DONE, o));
615 phone.mCM.getLastDataCallFailCause(
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
EriManager.java 26 import com.android.internal.telephony.Phone;
102 public EriManager(PhoneBase phone, Context context, int eriFileSource) {
103 this.mPhone = phone;
135 * In this case the ERI file can be updated from the Phone Support Tool available
145 * In this case the a Phone Support Tool to update the ERI file must be provided
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 39 import android.provider.ContactsContract.CommonDataKinds.Phone;
108 public static final int PHONE = 6;
235 if (Organization.COMPANY != Data.DATA1 || Phone.NUMBER != Data.DATA1
248 mMimeTypeIdPhone = dbHelper.getMimeTypeId(Phone.CONTENT_ITEM_TYPE);
410 suggestion.phoneNumber = c.getString(SearchSuggestionQuery.PHONE);
LegacyApiSupport.java 59 import android.provider.ContactsContract.CommonDataKinds.Phone;
131 + " LEFT OUTER JOIN data phone ON (raw_contacts._id = phone.raw_contact_id"
132 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = phone.mimetype_id)"
133 + "='" + Phone.CONTENT_ITEM_TYPE + "' AND phone.is_primary)";
228 Phone.CONTENT_ITEM_TYPE
580 "phone." + Data._ID
582 "phone." + Phone.NUMBE
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 40 import android.provider.ContactsContract.CommonDataKinds.Phone;
309 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
310 values.put(ContactsContract.CommonDataKinds.Phone.TYPE,
311 ContactsContract.CommonDataKinds.Phone.TYPE_HOME);
312 values.put(ContactsContract.CommonDataKinds.Phone.NUMBER, phoneNumber);
  /system/core/rootdir/etc/
init.testmenu 19 # map phone specific keys
70 echo " 3: misc phone"
71 echo " 4: phone debug output"
92 echo " 1: Print phone output"
97 echo " 6: Stop phone output"
  /frameworks/base/core/java/android/provider/
Contacts.java 87 * Signifies an Phone row that is stored in the Phones table
415 * The ID of the persons preferred phone number.
739 * The ID of the person this phone number is assigned to.
861 * The type of the the phone number.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityModifier.java 38 import android.provider.ContactsContract.CommonDataKinds.Phone;
463 // Phone
464 final DataKind kind = source.getKindForMimetype(Phone.CONTENT_ITEM_TYPE);
465 parseExtras(state, kind, extras, Insert.PHONE_TYPE, Insert.PHONE, Phone.NUMBER);
467 Phone.NUMBER);
469 Phone.NUMBER);
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/apps/Mms/src/com/android/mms/transaction/
TransactionService.java 29 import com.android.internal.telephony.Phone;
480 ConnectivityManager.TYPE_MOBILE, Phone.FEATURE_ENABLE_MMS);
487 case Phone.APN_ALREADY_ACTIVE:
488 case Phone.APN_REQUEST_STARTED:
507 Phone.FEATURE_ENABLE_MMS);
550 if (result != Phone.APN_ALREADY_ACTIVE) {
    [all...]
  /packages/apps/Phone/src/com/android/phone/
DTMFTwelveKeyDialer.java 17 package com.android.phone;
39 import com.android.internal.telephony.Phone;
370 * Our own handler to take care of the messages from the phone state changes
471 if (mCM.getFgPhone().getPhoneType() == Phone.PHONE_TYPE_CDMA) {
848 * lasts the whole life of the phone process. Instead, maybe look at
    [all...]
EditFdnContactScreen.java 17 package com.android.phone;
83 /** projection for phone number query */
86 /** static intent to invoke phone number picker */
ManageConferenceUtils.java 17 package com.android.phone;
34 import com.android.internal.telephony.Phone;
313 // get the phone state change event triggered by the call to
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 25 * specify the general device type such as a phone, a computer, or
155 public static final int PHONE = 0x0200;
175 // Devices in the PHONE major class
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 34 import android.provider.ContactsContract.CommonDataKinds.Phone;
502 if (type == Phone.TYPE_PAGER || VCardConfig.refrainPhoneNumberFormatting(mVCardType)) {
    [all...]
  /frameworks/base/docs/html/guide/topics/providers/
content-providers.jd 95 and meaning. For example, information about people and their phone numbers
145 tables &mdash; for example, to find a person's phone number in one table
173 phone numbers to people and the URI for the table that holds pictures of
279 defines constants for the names of the columns in the phone table illustrated
297 primary phone numbers:
326 provider. It gets the name, primary phone number, and unique record ID for
415 The following snippet demonstrates reading names and phone numbers from
523 be to add contact information &mdash; like a phone number or an IM or e-mail
533 example by adding a phone number and e-mail address for the record
541 // Add a phone number for Abraham Lincoln. Begin with the URI fo
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyInterface.h 38 // - keep track of current system state (removable device connections, phone state, user requests...).
71 // indicate a change in phone state. Valid phones states are defined by AudioSystem::audio_mode
208 // over a telephony device during a phone call.
  /packages/apps/Contacts/src/com/android/contacts/
ViewContactActivity.java 70 import android.provider.ContactsContract.CommonDataKinds.Phone;
572 if (entry.mimetype.equals(CommonDataKinds.Phone.CONTENT_ITEM_TYPE)) {
779 ITelephony phone = ITelephony.Stub.asInterface( local
780 ServiceManager.checkService("phone"));
781 if (phone != null && !phone.isIdle()) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java 57 import android.provider.ContactsContract.CommonDataKinds.Phone;
225 Phone.CONTENT_ITEM_TYPE,
252 "com.android.phone",
779 if (Phone.CONTENT_ITEM_TYPE.equals(mimeType)) {
780 final String number = getAsString(cursor, Phone.NUMBER);
791 // of the "call phone" icon, rather than the standard
792 // app icon for the Phone app (which we show for
793 // regular phone numbers.) That's because the phone
798 final String number = getAsString(cursor, Phone.NUMBER)
    [all...]

Completed in 612 milliseconds

<<11121314151617181920>>