HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /packages/apps/Phone/src/com/android/phone/
TelephonyCapabilities.java 17 package com.android.phone;
23 import com.android.internal.telephony.Phone;
27 * functions that depend upon the type of phone or the carrier. Ultimately
43 /* package */ static boolean useShortDtmfTones(Phone phone, Context context) {
44 int phoneType = phone.getPhoneType();
45 if (phoneType == Phone.PHONE_TYPE_GSM) {
47 } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
57 } else if (phoneType == Phone.PHONE_TYPE_SIP) {
60 throw new IllegalStateException("Unexpected phone type: " + phoneType)
    [all...]
INetworkQueryService.aidl 17 package com.android.phone;
19 import com.android.phone.INetworkQueryServiceCallback;
23 * Phone application lets this service interface handle carrier
IccProvider.java 17 package com.android.phone;
INetworkQueryServiceCallback.aidl 17 package com.android.phone;
SipBroadcastReceiver.java 17 package com.android.phone;
20 import com.android.internal.telephony.Phone;
23 import com.android.phone.sip.SipProfileDb;
24 import com.android.phone.sip.SipSharedPreferences;
60 SipPhone phone = PhoneFactory.makeSipPhone(localSipUri); local
61 if (phone != null) {
62 CallManager.getInstance().registerPhone(phone);
64 Log.d(TAG, "new phone: " + localSipUri + " #phones="
69 Log.d(TAG, "removed phone: " + localSipUri + " #phones="
81 for (Phone phone : CallManager.getInstance().getAllPhones())
    [all...]
BluetoothCmeError.java 17 package com.android.phone;
Constants.java 17 package com.android.phone;
20 * App-wide constants and enums for the phone app.
23 * the com.android.phone package should be defined here. (Constants that
33 * or "exceptional conditions" that can occur when making a phone
72 * The supplied CALL Intent didn't contain a valid phone number.
77 * Our initial phone number was actually an MMI sequence.
117 * where the phone disallows data connections over the cell
119 * call. If the phone is in ECM and you dial a non-emergency
CdmaVoicePrivacyCheckBoxPreference.java 17 package com.android.phone;
19 import com.android.internal.telephony.Phone;
33 Phone phone; field in class:CdmaVoicePrivacyCheckBoxPreference
39 phone = PhoneApp.getPhone();
40 phone.getEnhancedVoicePrivacy(mHandler.obtainMessage(MyHandler.MESSAGE_GET_VP));
56 phone.enableEnhancedVoicePrivacy(isChecked(),
102 phone.getEnhancedVoicePrivacy(obtainMessage(MESSAGE_GET_VP));
CarrierLogo.java 17 package com.android.phone;
  /external/chromium/chrome/browser/autofill/
home_phone_number.cc 9 HomePhoneNumber::HomePhoneNumber(const HomePhoneNumber& phone)
10 : PhoneNumber(phone) {
15 HomePhoneNumber& HomePhoneNumber::operator=(const HomePhoneNumber& phone) {
16 PhoneNumber::operator=(phone);
home_phone_number.h 16 HomePhoneNumber(const HomePhoneNumber& phone);
19 HomePhoneNumber& operator=(const HomePhoneNumber& phone);
autofill_common_test.h 35 const char* phone, const char* fax);
42 const char* phone, const char* fax);
autofill_type_unittest.cc 30 AutofillType phone(PHONE_HOME_NUMBER);
31 EXPECT_EQ(PHONE_HOME_NUMBER, phone.field_type());
32 EXPECT_EQ(AutofillType::PHONE_HOME, phone.group());
33 EXPECT_EQ(AutofillType::PHONE_NUMBER, phone.subgroup());
  /packages/apps/Phone/
Android.mk 3 # Static library with some common classes for the phone apps.
5 # LOCAL_STATIC_JAVA_LIBRARIES := com.android.phone.common
11 src/com/android/phone/CallLogAsync.java \
12 src/com/android/phone/HapticFeedback.java
14 LOCAL_MODULE := com.android.phone.common
17 # Build the Phone app which includes the emergency dialer. See Contacts
25 src/com/android/phone/EventLogTags.logtags \
26 src/com/android/phone/INetworkQueryService.aidl \
27 src/com/android/phone/INetworkQueryServiceCallback.aidl
29 LOCAL_PACKAGE_NAME := Phone
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 44 public CdmaLteServiceStateTracker(CDMALTEPhone phone) {
45 super(phone);
47 mCdmaLtePhone = phone;
76 phone.mIccRecords.registerForRecordsLoaded(this, EVENT_SIM_RECORDS_LOADED, null);
84 phone.prepareEri();
87 CdmaLteUiccRecords sim = (CdmaLteUiccRecords)phone.mIccRecords;
193 int networkMode = android.provider.Settings.Secure.getInt(phone.getContext()
236 int networkMode = android.provider.Settings.Secure.getInt(phone.getContext()
324 && (phone.mDataConnectionTracker instanceof CdmaDataConnectionTracker)) {
326 phone.mDataConnectionTracker.dispose()
    [all...]
RuimPhoneBookInterfaceManager.java 35 public RuimPhoneBookInterfaceManager(CDMAPhone phone) {
36 super(phone);
37 adnCache = phone.mIccRecords.getAdnCache();
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
CdmaDataConnection.java 24 import com.android.internal.telephony.Phone;
36 private CdmaDataConnection(CDMAPhone phone, String name, int id, RetryManager rm,
38 super(phone, name, id, rm, dct);
44 * @param phone the Phone
49 static CdmaDataConnection makeDataConnection(CDMAPhone phone, int id, RetryManager rm,
54 CdmaDataConnection cdmaDc = new CdmaDataConnection(phone, "CdmaDC-" + mCount,
78 (cp.apn.types[0].equals(Phone.APN_TYPE_DUN))) {
88 phone.mCM.setupDataCall(
106 && !phone.isDnsCheckDisabled())
    [all...]
CdmaMmiCode.java 55 CDMAPhone phone; field in class:CdmaMmiCode
101 newFromDialString(String dialString, CDMAPhone phone) {
109 ret = new CdmaMmiCode(phone);
138 CdmaMmiCode (CDMAPhone phone) {
139 super(phone.getHandler().getLooper());
140 this.phone = phone;
141 this.context = phone.getContext();
165 phone.onMMIDone (this);
209 phone.mCM.supplyIccPuk(oldPinOrPuk, newPin
    [all...]
RuimCard.java 28 RuimCard(CDMAPhone phone, String LOG_TAG, boolean dbg) {
29 super(phone, LOG_TAG, dbg);
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallManager.java 42 * and control calls. It implements Phone interface.
86 private final ArrayList<Phone> mPhones;
100 // default phone as the first phone registered, which is PhoneBase obj
101 private Phone mDefaultPhone;
168 mPhones = new ArrayList<Phone>();
186 * @param phone a Phone object
187 * @return the corresponding PhoneBase obj in Phone if Phone
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimCard.java 22 import com.android.internal.telephony.Phone;
32 SimCard(GSMPhone phone) {
33 super(phone, "GSM", true);
42 * We have the Sim card for LTE on CDMA phone
44 public SimCard(PhoneBase phone, String logTag, Boolean dbg) {
45 super(phone, logTag, dbg);
51 if(mPhone.getLteOnCdmaMode() == Phone.LTE_ON_CDMA_TRUE) {
64 if(mPhone.getLteOnCdmaMode() == Phone.LTE_ON_CDMA_TRUE) {
SimPhoneBookInterfaceManager.java 35 public SimPhoneBookInterfaceManager(GSMPhone phone) {
36 super(phone);
37 adnCache = phone.mIccRecords.getAdnCache();
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
SIMRecords.java 39 import com.android.internal.telephony.Phone;
177 adnCache = new AdnRecordCache(phone);
201 phone.mCM.unregisterForSIMReady(this);
202 phone.mCM.unregisterForOffOrNotAvailable( this);
203 phone.mCM.unregisterForIccRefresh(this);
226 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_NUMERIC, null);
227 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_ALPHA, null);
228 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_ISO_COUNTRY, null);
282 new AdnRecordLoader(phone).updateEF(adn, EF_MSISDN, EF_EXT1, 1, null,
334 new AdnRecordLoader(phone).updateEF(adn, EF_MBDN, EF_EXT6
    [all...]
SIMFileHandler.java 26 import com.android.internal.telephony.Phone;
33 private Phone mPhone;
39 SIMFileHandler(GSMPhone phone) {
40 super(phone);
41 mPhone = phone;
93 // The EFids in USIM phone book entries are decided by the card manufacturer.
95 // the phone book path.
96 IccCard card = phone.getIccCard();
  /packages/apps/Phone/tests/src/com/android/phone/tests/
CallDialTest.java 17 package com.android.phone.tests;
36 import com.android.phone.Constants;
113 // Get a phone number or SIP address from the EditText widget
153 // Get a phone number from the EditText widget
158 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")); local
159 log("- phone: " + phone);
161 phone.call(number);
171 // Get a phone number from the EditText widge
176 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")); local
    [all...]

Completed in 126 milliseconds

1 2 3 4 5 6 7 8 9