HomeSort by relevance Sort by last modified time
    Searched refs:Phone (Results 176 - 200 of 207) sorted by null

1 2 3 4 5 6 78 9

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 80 import android.provider.ContactsContract.CommonDataKinds.Phone;
    [all...]
ContactsDatabaseHelper.java 52 import android.provider.ContactsContract.CommonDataKinds.Phone;
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 51 import com.android.internal.telephony.Phone;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Phone.java 39 * Internal interface used to control the phone; SDK developers cannot
45 public interface Phone {
117 // Note NT_* substitute RILConstants.NETWORK_MODE_* above the Phone
223 * Gets the context for the phone, as set at initialization time.
243 * If the phone has an active call and call waiting occurs,
244 * then the phone state is RINGING not OFFHOOK
253 * Returns a string identifier for this phone interface for parties
254 * outside the phone app process.
260 * Return a numerical identifier for the phone radio interface.
268 * @return The string array will always return at least one entry, Phone.APN_TYPE_DEFAULT
    [all...]
PhoneBase.java 57 * A base implementation for the com.android.internal.telephony.Phone interface.
59 * Note that implementations of Phone.java are expected to be used
67 public abstract class PhoneBase extends Handler implements Phone {
271 * (i.e. voice) phone calls over the telephony network, and is allowed
423 * Subclasses of Phone probably want to replace this with a
598 * Subclasses of Phone probably want to replace this with a
647 // no need for regular phone
651 * Subclasses of Phone probably want to replace this with a
678 "com.android.internal.telephony.Phone must be used from within one thread");
731 * Retrieves the IccFileHandler of the Phone instanc
    [all...]
SMSDispatcher.java 148 protected final Phone mPhone;
205 * @param phone the Phone to use
209 protected SMSDispatcher(PhoneBase phone, SmsStorageMonitor storageMonitor,
211 mPhone = phone;
212 mWapPush = new WapPushOverSms(phone, this);
213 mContext = phone.getContext();
215 mCi = phone.mCi;
282 * persistent manner. If the phone process restarts (reboot or crash),
290 * Handles events coming from the phone stack. Overridden from handler
    [all...]
  /packages/apps/Phone/src/com/android/phone/
OutgoingCallBroadcaster.java 17 package com.android.phone;
43 import com.android.internal.telephony.Phone;
72 public static final String ACTION_SIP_SELECT_PHONE = "com.android.phone.SIP_SELECT_PHONE";
73 public static final String EXTRA_ALREADY_CALLED = "android.phone.extra.ALREADY_CALLED";
74 public static final String EXTRA_ORIGINAL_URI = "android.phone.extra.ORIGINAL_URI";
75 public static final String EXTRA_NEW_CALL_INTENT = "android.phone.extra.NEW_CALL_INTENT";
76 public static final String EXTRA_SIP_PHONE_URI = "android.phone.extra.SIP_PHONE_URI";
78 "android.phone.extra.ACTUAL_NUMBER_TO_DIAL";
83 * press/depress of the "hookswitch" of a landline phone. Aka "empty flash".
85 * TODO: Receiving an intent extra to tell the phone to send this flash is
    [all...]
NotificationMgr.java 17 package com.android.phone;
55 import com.android.internal.telephony.Phone;
61 * NotificationManager-related utility code for the Phone app.
98 private Phone mPhone;
144 mPhone = app.phone; // TODO: better style to use mCM.getDefaultPhone() everywhere instead
180 * while a phone call is active
231 * pulling the phone out of your pocket.)
265 * Makes sure phone-related notifications are up to date on a
290 // case even if the phone app crashes.
385 log("contact :" + n.name + " found for phone: " + n.numbe
    [all...]
InCallTouchUi.java 17 package com.android.phone;
49 import com.android.internal.telephony.Phone;
53 import com.android.phone.InCallUiState.InCallScreenMode;
79 // Phone app instance
220 * the current state of the phone.
247 // A phone call is ringing *or* call waiting.
249 // Watch out: even if the phone state is RINGING, it's
262 // UI even if the phone is still in the RINGING state.
337 // accidentally touch the system bar while pulling the phone
352 // in-call audio, namely when the phone is OFFHOOK (not RINGING), *and
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipSettings.java 17 package com.android.phone.sip;
20 import com.android.internal.telephony.Phone;
22 import com.android.phone.CallFeaturesSetting;
23 import com.android.phone.R;
24 import com.android.phone.SipUtil;
SipEditor.java 17 package com.android.phone.sip;
20 import com.android.internal.telephony.Phone;
22 import com.android.phone.R;
23 import com.android.phone.SipUtil;
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 35 import android.provider.ContactsContract.CommonDataKinds.Phone;
145 * The action mode used when the phone number is selected. This will be non-null only when the
146 * phone number is selected.
371 // Make sure phone isn't already busy before starting direct call
394 // TODO: All phone calls correspond to the same person, so we can make a single
427 // Set the details header, based on the first phone call.
430 // Cache the details about the phone number.
463 // the Insert.PHONE extra only works correctly for PSTN numbers.
477 mainActionIntent.putExtra(Insert.PHONE, mNumber);
524 entry.label = Phone.getTypeLabel(mResources, firstDetails.numberType
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 53 import com.android.internal.telephony.Phone;
69 private final String TAG = "phone";
128 private Phone phone = null; field in class:RadioInfo
210 phone.getPreferredNetworkType(
251 phone = PhoneFactory.getDefaultPhone();
327 phone.getPreferredNetworkType(
329 phone.getNeighboringCids(
360 log("onResume: register phone & data intents");
376 log("onPause: unregister phone & data intents")
    [all...]
CryptKeeper.java 60 import com.android.internal.telephony.Phone;
96 static final String ACTION_EMERGENCY_DIAL = "com.android.phone.EmergencyDialer.DIAL";
656 * phone that has no encryption.
699 // Show "return to call" text and show phone icon
724 final ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")); local
725 if (phone != null) {
727 phone.showCallScreen();
Utils.java 51 import android.provider.ContactsContract.CommonDataKinds.Phone;
316 * Returns whether the device is voice-capable (meaning, it is also a phone).
ApnEditor.java 42 import com.android.internal.telephony.Phone;
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java 71 import com.android.internal.telephony.Phone;
1563 TelephonyManager phone = (TelephonyManager) local
1604 TelephonyManager phone = (TelephonyManager) local
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 66 * as a phone number or email addresses. The set of data kinds that can be
166 * return only phone-related results. For example, frequently contacted person list should
167 * include persons contacted via phone (not email, sms, etc.)
190 * A boolean parameter for {@link CommonDataKinds.Phone#CONTENT_URI},
317 * in email and phone lookup functionalities, it should also implement
320 * {@link CommonDataKinds.Phone#CONTENT_FILTER_URI CommonDataKinds.Phone.CONTENT_FILTER_URI}.
564 * allow creation of shortcuts for data items like email, phone or postal address,
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 60 import com.android.internal.telephony.Phone;
194 public GsmServiceStateTracker(GSMPhone phone) {
195 super(phone, phone.mCi, new CellInfoGsm());
197 mPhone = phone;
202 (PowerManager)phone.getContext().getSystemService(Context.POWER_SERVICE);
214 phone.getContext().getContentResolver(),
218 mCr = phone.getContext().getContentResolver();
231 phone.getContext().registerReceiver(mIntentReceiver, filter);
234 phone.notifyOtaspChanged(OTASP_NOT_NEEDED)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 43 import android.provider.ContactsContract.CommonDataKinds.Phone;
620 // activity and create a phone-local contact.
651 // No Accounts available. Create a phone-local contact.
744 RawContactModifier.ensureKindExists(insert, newAccountType, Phone.CONTENT_ITEM_TYPE);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 520 intent.putExtra(ContactsContract.Intents.Insert.PHONE, address);
522 ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE);
599 // of phone to work with, localization shouldn't be a problem:
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 42 import com.android.internal.telephony.Phone;
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 47 import com.android.internal.telephony.Phone;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 40 import android.provider.ContactsContract.CommonDataKinds.Phone;
586 PhoneDataItem phone = (PhoneDataItem) dataItem; local
587 // Build phone entries
588 entry.data = phone.getFormattedPhoneNumber();
608 // Remember super-primary phone
615 // add to beginning of list so that this phone number shows up first
622 // Configure the text direction. Phone numbers should be displayed LTR
708 // repositioning it right under the phone number.
1978 ITelephony phone = ITelephony.Stub.asInterface( local
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 48 * Various utilities for dealing with phone number strings.
55 * (See "What is a phone number?" doc)
82 * global-phone-number = ["+"] 1*( DIGIT / written-sep )
143 /** Extracts the phone number from an Intent.
148 * @return the phone number that would be called by the intent, or
174 // Correctly read out the phone entry based on requested provider
179 phoneColumn = ContactsContract.CommonDataKinds.Phone.NUMBER;
276 * Strips separators from a phone number string.
277 * @param phoneNumber phone number to strip.
278 * @return phone string stripped of separators
    [all...]

Completed in 2460 milliseconds

1 2 3 4 5 6 78 9