HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 226 - 250 of 362) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsHandler.java 133 /** Update phone object */
183 * @param context the context of the phone app
187 PhoneBase phone, CellBroadcastHandler cellBroadcastHandler) {
192 mPhone = phone;
225 * Update the phone object when it changes.
227 public void updatePhoneObject(PhoneBase phone) {
228 sendMessage(EVENT_UPDATE_PHONE_OBJECT, phone);
558 * Called when the phone changes the default method updates mPhone
562 * @param phone
564 protected void onUpdatePhoneObject(PhoneBase phone) {
    [all...]
PhoneProxy.java 51 public class PhoneProxy extends Handler implements Phone {
54 private Phone mActivePhone;
76 public PhoneProxy(PhoneBase phone) {
77 mActivePhone = phone;
81 phone.getIccPhoneBookInterfaceManager());
82 mPhoneSubInfoProxy = new PhoneSubInfoProxy(phone.getPhoneSubInfo());
89 mPhoneId = phone.getPhoneId();
94 if (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_GSM) {
97 } else if (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA) {
179 logd("phoneObjectUpdater: LTE ON CDMA property is set. Use CDMA Phone"
    [all...]
SMSDispatcher.java 177 * @param phone the Phone to use
180 protected SMSDispatcher(PhoneBase phone, SmsUsageMonitor usageMonitor,
182 mPhone = phone;
184 mContext = phone.getContext();
186 mCi = phone.mCi;
221 protected void updatePhoneObject(PhoneBase phone) {
222 mPhone = phone;
223 mUsageMonitor = phone.mSmsUsageMonitor;
224 Rlog.d(TAG, "Active phone changed to " + mPhone.getPhoneName() )
    [all...]
SubscriptionController.java 155 public static SubscriptionController init(Phone phone) {
158 sInstance = new SubscriptionController(phone);
201 private SubscriptionController(Phone phone) {
202 mContext = phone.getContext();
209 logdl("[SubscriptionController] init by Phone");
723 * Set phone number by subId
724 * @param number the phone number of the SIM
746 Phone phone = sProxyPhones[phoneId] local
    [all...]
UiccSmsController.java 29 import com.android.internal.telephony.Phone;
42 protected Phone[] mPhone;
44 protected UiccSmsController(Phone[] phone){
45 mPhone = phone;
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 3168 WebInputElement phone = local
3236 WebInputElement phone = local
3304 WebInputElement phone = local
3370 WebInputElement phone = local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 63 import com.android.internal.telephony.Phone;
210 public GsmServiceStateTracker(GSMPhone phone) {
211 super(phone, phone.mCi, new CellInfoGsm());
213 mPhone = phone;
218 (PowerManager)phone.getContext().getSystemService(Context.POWER_SERVICE);
230 phone.getContext().getContentResolver(),
234 mCr = phone.getContext().getContentResolver();
247 phone.getContext().registerReceiver(mIntentReceiver, filter);
250 Context context = phone.getContext()
    [all...]
GsmSMSDispatcher.java 64 public GsmSMSDispatcher(PhoneBase phone, SmsUsageMonitor usageMonitor,
67 super(phone, usageMonitor, imsSMSDispatcher);
88 * Handles 3GPP format-specific events coming from the phone stack.
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 740 // Test for phone number validation.
746 ServerFieldType phone = i == 0 ? PHONE_HOME_WHOLE_NUMBER : local
766 EXPECT_FALSE(HasAnyError(messages, phone));
768 // Input an empty phone number.
769 outputs[phone] = base::string16();
771 EXPECT_TRUE(HasUnsureError(messages, phone));
773 // Input an invalid phone number.
774 outputs[phone] = ASCIIToUTF16("ABC");
776 EXPECT_TRUE(messages.HasSureError(phone));
778 // Input a local phone number
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 28 import android.telecom.Phone;
89 private final Phone.Listener mPhoneListener = new Phone.Listener() {
91 public void onBringToForeground(Phone phone, boolean showDialpad) {
96 public void onCallAdded(Phone phone, android.telecom.Call call) {
100 public void onCallRemoved(Phone phone, android.telecom.Call call) {
142 private Phone mPhone
    [all...]
DialpadFragment.java 37 import com.android.phone.common.dialpad.DialpadKeyButton;
38 import com.android.phone.common.dialpad.DialpadView;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 196 // On mobile originated (MO) calls, the phone number may have changed
200 // and therefore don't need to compare the phone number anyway.
203 // ... but we can compare phone numbers on MT calls, and we have
303 if (Phone.DEBUG_PHONE) {
372 CDMAPhone phone = mOwner.mPhone; local
373 int serviceState = phone.getServiceState().getState();
383 } else if (phone.mCdmaSubscriptionSource ==
449 if (Phone.DEBUG_PHONE) log("parent= " +mParent +", newParent= " + newParent);
454 if (Phone.DEBUG_PHONE) log("update: phone # changed!")
    [all...]
CdmaLteServiceStateTracker.java 26 import com.android.internal.telephony.Phone;
66 public CdmaLteServiceStateTracker(CDMALTEPhone phone) {
67 super(phone, new CellInfoLte());
68 mCdmaLtePhone = phone;
640 dcTracker.cleanUpAllConnections(Phone.REASON_RADIO_TURNED_OFF);
644 dcTracker.cleanUpAllConnections(Phone.REASON_RADIO_TURNED_OFF);
675 // For CDMA-LTE phone don't update phone to GSM
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 89 // Also, be aware that type IDs differ between Phone and Email, and MUST be computed
92 mContactPhoneTypes.add(ContactsContract.CommonDataKinds.Phone.TYPE_HOME);
93 mContactPhoneTypes.add(ContactsContract.CommonDataKinds.Phone.TYPE_WORK);
94 mContactPhoneTypes.add(ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE);
95 mContactPhoneTypes.add(ContactsContract.CommonDataKinds.Phone.TYPE_OTHER);
107 // Populate list of account types for phone
114 adapter.add(ContactsContract.CommonDataKinds.Phone.getTypeLabel(
173 String phone = mContactPhoneEditText.getText().toString(); local
199 ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE)
200 .withValue(ContactsContract.CommonDataKinds.Phone.NUMBER, phone
    [all...]
  /external/chromium_org/components/test/data/web_database/
version_27.sql 15 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR);
version_29.sql 17 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerNotificationWarnings.java 42 import com.android.systemui.statusbar.phone.PhoneStatusBar;
43 import com.android.systemui.statusbar.phone.SystemUIDialog;
  /frameworks/base/telecomm/java/android/telecom/
Call.java 32 * Represents an ongoing phone call that the in-call app should present to the user.
92 * extras. Used to pass the phone accounts to display on the front end to the user in order to
93 * select phone accounts to (for example) place a call.
115 * @return The handle (e.g., phone number) to which the {@code Call} is currently
372 private final Phone mPhone;
466 * A post-dial DTMF string is a string of digits entered after a phone number, when dialed,
636 Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter) {
637 mPhone = phone;
739 // remove ourselves from the Phone. Note that we do this after completing all state update
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcSwitchState.java 24 import com.android.internal.telephony.Phone;
57 private Phone mPhone;
68 protected DcSwitchState(Phone phone, String name, int id) {
71 mPhone = phone;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
KeyguardViewMediator.java 65 import com.android.systemui.statusbar.phone.PhoneStatusBar;
66 import com.android.systemui.statusbar.phone.ScrimController;
67 import com.android.systemui.statusbar.phone.StatusBarKeyguardViewManager;
68 import com.android.systemui.statusbar.phone.StatusBarWindowManager;
76 * should be shown or reset, callbacks to the phone window manager to notify
88 * Callbacks to the phone window manager:
204 * External apps (like the phone app) can tell us to disable the keygaurd.
722 * the phone app disables the keyguard when it receives incoming calls.
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BarTransitions.java 17 package com.android.systemui.statusbar.phone;
DemoStatusIcons.java 17 package com.android.systemui.statusbar.phone;
DozeParameters.java 17 package com.android.systemui.statusbar.phone;
KeyguardStatusBarView.java 17 package com.android.systemui.statusbar.phone;
NavigationBarTransitions.java 17 package com.android.systemui.statusbar.phone;

Completed in 1090 milliseconds

1 2 3 4 5 6 7 8 91011>>