HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 101 - 125 of 579) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/deviceinfo/
ImeiInformation.java 32 import com.android.internal.telephony.Phone;
59 // Since there are multiple phone for dsds, therefore need to show information for different
71 final Phone phone = PhoneFactory.getPhone(phoneId); local
73 if (phone != null) {
74 if (phone.getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA) {
75 setSummaryText(KEY_MEID_NUMBER, phone.getMeid());
76 setSummaryText(KEY_MIN_NUMBER, phone.getCdmaMin());
82 setSummaryText(KEY_PRL_VERSION, phone.getCdmaPrlVersion());
84 if (phone.getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_TRUE)
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
ImapMemoryLiteral.java 17 package com.android.phone.common.mail.store.imap;
19 import com.android.phone.common.mail.FixedLengthInputStream;
20 import com.android.phone.vvm.omtp.VvmLog;
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/fetch/
FetchVoicemailReceiver.java 16 package com.android.phone.vvm.omtp.fetch;
34 import com.android.internal.telephony.Phone;
35 import com.android.phone.PhoneUtils;
36 import com.android.phone.VoicemailStatus;
37 import com.android.phone.vvm.omtp.OmtpVvmCarrierConfigHelper;
38 import com.android.phone.vvm.omtp.VvmLog;
39 import com.android.phone.vvm.omtp.imap.ImapHelper;
40 import com.android.phone.vvm.omtp.imap.ImapHelper.InitializingException;
41 import com.android.phone.vvm.omtp.sync.OmtpVvmSourceManager;
42 import com.android.phone.vvm.omtp.sync.VvmNetworkRequestCallback
157 Phone phone = PhoneUtils.getPhoneForPhoneAccountHandle(handle); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/sms/
OmtpMessageSender.java 16 package com.android.phone.vvm.omtp.sms;
22 import com.android.phone.vvm.omtp.OmtpConstants;
23 import com.android.phone.vvm.omtp.VvmLog;
SyncMessage.java 16 package com.android.phone.vvm.omtp.sms;
21 import com.android.phone.NeededForTesting;
22 import com.android.phone.vvm.omtp.OmtpConstants;
102 * {@link com.android.phone.vvm.omtp.OmtpConstants#NEW_MESSAGE}
112 * {@link com.android.phone.vvm.omtp.OmtpConstants#NEW_MESSAGE}
123 * {@link com.android.phone.vvm.omtp.OmtpConstants#NEW_MESSAGE}
130 * @return the sender's phone number of the new message specified as MSISDN.
133 * {@link com.android.phone.vvm.omtp.OmtpConstants#NEW_MESSAGE}
143 * {@link com.android.phone.vvm.omtp.OmtpConstants#NEW_MESSAGE}
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/utils/
VvmDumpHandler.java 1 package com.android.phone.vvm.omtp.utils;
8 import com.android.phone.vvm.omtp.OmtpVvmCarrierConfigHelper;
9 import com.android.phone.vvm.omtp.VvmLog;
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/
SimChangeReceiver.java 16 package com.android.phone.vvm.omtp;
32 import com.android.phone.VoicemailStatus;
33 import com.android.phone.settings.VisualVoicemailSettingsUtil;
34 import com.android.phone.vvm.omtp.sync.OmtpVvmSourceManager;
35 import com.android.phone.vvm.omtp.utils.PhoneAccountHandleConverter;
98 // Add a phone state listener so that changes to the communication channels
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTest.java 43 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Phone"), regexp, "0123456789");
44 Phone phone1 = new Phone("12-34-567");
45 Phone phone2 = new Phone("11-22-333");
46 Phone phone3 = new Phone("44-55-777");
47 List<Phone> etalonList = new ArrayList<Phone>();
53 List<Phone> parsedList = (List<Phone>) yaml.load(output)
107 Phone phone = (Phone) data; local
135 Point phone = (Point) data; local
143 Phone phone = (Phone) data; local
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeBodyPart.java 16 package com.android.phone.common.mail.internet;
18 import com.android.phone.common.mail.Body;
19 import com.android.phone.common.mail.BodyPart;
20 import com.android.phone.common.mail.MessagingException;
90 if (body instanceof com.android.phone.common.mail.Multipart) {
91 com.android.phone.common.mail.Multipart multipart =
92 ((com.android.phone.common.mail.Multipart)body);
  /packages/services/Telephony/tests/src/com/android/phone/tests/
CallDialTest.java 17 package com.android.phone.tests;
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(getPackageName(), number);
171 // Get a phone number from the EditText widget
176 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone")) local
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/store/
ImapConnection.java 16 package com.android.phone.common.mail.store;
20 import com.android.phone.common.mail.AuthenticationFailedException;
21 import com.android.phone.common.mail.CertificateValidationException;
22 import com.android.phone.common.mail.MailTransport;
23 import com.android.phone.common.mail.MessagingException;
24 import com.android.phone.common.mail.store.ImapStore.ImapException;
25 import com.android.phone.common.mail.store.imap.DigestMd5Utils;
26 import com.android.phone.common.mail.store.imap.ImapConstants;
27 import com.android.phone.common.mail.store.imap.ImapResponse;
28 import com.android.phone.common.mail.store.imap.ImapResponseParser
    [all...]
ImapStore.java 17 package com.android.phone.common.mail.store;
22 import com.android.phone.common.mail.MailTransport;
23 import com.android.phone.common.mail.Message;
24 import com.android.phone.common.mail.MessagingException;
25 import com.android.phone.common.mail.internet.MimeMessage;
26 import com.android.phone.vvm.omtp.imap.ImapHelper;
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 17 package com.android.phone;
60 import com.android.internal.telephony.Phone;
66 import com.android.phone.CallGatewayManager.RawGatewayInfo;
72 * Misc utilities for the Phone app.
93 // State of the Phone's audio modes
96 static final int AUDIO_IDLE = 0; /** audio behaviour at phone idle */
110 /** Phone state changed event*/
116 /** poll phone DISCONNECTING status interval */
119 /** poll phone DISCONNECTING status times limit */
149 new ComponentName("com.android.phone",
218 final Phone phone = ringingCall.getPhone(); local
2021 Phone phone = cm.getActiveFgCall().getPhone(); local
2211 Phone phone = getSipPhoneFromUri(cm, primarySipUri); local
2437 Phone phone = getPhoneForPhoneAccountHandle(handle); local
    [all...]
CallController.java 17 package com.android.phone;
20 import com.android.internal.telephony.Phone;
23 import com.android.phone.CallGatewayManager.RawGatewayInfo;
24 import com.android.phone.Constants.CallStatusCode;
39 * Phone app module in charge of "call control".
176 * (4) Here in CallController.placeCall() we read the phone number or SIP
232 Phone phone = mApp.mCM.getDefaultPhone(); local
233 if (TelephonyCapabilities.supportsOtasp(phone)) {
289 Phone phone = null local
    [all...]
SpecialCharSequenceMgr.java 17 package com.android.phone;
29 import com.android.internal.telephony.Phone;
39 * that are handled specially by the Phone app.
89 * which is still in the Phone App.
135 // your phone, and need to change the PIN! The only way to do
170 // if the phone is keyguard-restricted, then just ignore this
172 // exposed unless the phone is unlocked, and this code can be
184 intent.setClassName("com.android.phone",
185 "com.android.phone.SimContacts");
204 Phone phone = PhoneGlobals.getPhone() local
233 Phone phone = PhoneGlobals.getPhone(); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/imap/
ImapHelper.java 16 package com.android.phone.vvm.omtp.imap;
26 import com.android.phone.PhoneUtils;
27 import com.android.phone.VoicemailStatus;
28 import com.android.phone.common.mail.Address;
29 import com.android.phone.common.mail.Body;
30 import com.android.phone.common.mail.BodyPart;
31 import com.android.phone.common.mail.FetchProfile;
32 import com.android.phone.common.mail.Flag;
33 import com.android.phone.common.mail.Message;
34 import com.android.phone.common.mail.MessagingException
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 31 import com.android.internal.telephony.Phone;
61 Phone phone, CdmaSMSDispatcher smsDispatcher) {
62 super("CdmaInboundSmsHandler", context, storageMonitor, phone,
63 CellBroadcastHandler.makeCellBroadcastHandler(context, phone));
66 phone.mCi);
67 phone.mCi.setOnNewCdmaSms(getHandler(), EVENT_NEW_SMS, null);
86 SmsStorageMonitor storageMonitor, Phone phone, CdmaSMSDispatcher smsDispatcher) {
88 phone, smsDispatcher)
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/
AccessibilitySettingsFragment.java 17 package com.android.phone.settings;
34 import com.android.internal.telephony.Phone;
36 import com.android.phone.PhoneGlobals;
37 import com.android.phone.R;
38 import com.android.phone.settings.TtyModeListPreference;
148 final Phone[] phones = PhoneFactory.getPhones();
154 for (Phone phone : phones) {
155 if (phone.isVideoCallPresent()) {
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/sync/
VvmNetworkRequestCallback.java 16 package com.android.phone.vvm.omtp.sync;
27 import com.android.phone.PhoneUtils;
28 import com.android.phone.VoicemailStatus;
29 import com.android.phone.vvm.omtp.OmtpEvents;
30 import com.android.phone.vvm.omtp.OmtpVvmCarrierConfigHelper;
31 import com.android.phone.vvm.omtp.VvmLog;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List7.java 26 import android.provider.ContactsContract.CommonDataKinds.Phone;
43 Phone._ID,
44 Phone.TYPE,
45 Phone.LABEL,
46 Phone.NUMBER,
47 Phone.DISPLAY_NAME
58 mPhone = (TextView) findViewById(R.id.phone);
62 // This query will only return contacts with phone numbers
63 Cursor c = getContentResolver().query(Phone.CONTENT_URI,
64 PHONE_PROJECTION, Phone.NUMBER + " NOT NULL", null, null)
84 String phone = c.getString(COLUMN_PHONE_NUMBER); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTesterFailBringUpAll.java 27 import com.android.internal.telephony.Phone;
44 private Phone mPhone;
77 DcTesterFailBringUpAll(Phone phone, Handler handler) {
78 mPhone = phone;
91 phone.getContext().registerReceiver(mIntentReceiver, filter, null, handler);
  /packages/services/Telephony/src/com/android/services/telephony/
EmergencyCallHelper.java 25 import com.android.internal.telephony.Phone;
66 * - Power on the radio for each Phone
81 Phone phone = PhoneFactory.getPhone(i); local
82 if (phone == null)
86 mListeners.get(i).waitForRadioOn(phone, this);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUIFactory.java 30 import com.android.systemui.statusbar.phone.KeyguardBouncer;
31 import com.android.systemui.statusbar.phone.LockscreenWallpaper;
32 import com.android.systemui.statusbar.phone.NotificationIconAreaController;
33 import com.android.systemui.statusbar.phone.PhoneStatusBar;
34 import com.android.systemui.statusbar.phone.QSTileHost;
35 import com.android.systemui.statusbar.phone.ScrimController;
36 import com.android.systemui.statusbar.phone.StatusBarIconController;
37 import com.android.systemui.statusbar.phone.StatusBarKeyguardViewManager;
38 import com.android.systemui.statusbar.phone.StatusBarWindowManager;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
AppButtonData.java 17 package com.android.systemui.statusbar.phone;
BounceInterpolator.java 17 package com.android.systemui.statusbar.phone;

Completed in 748 milliseconds

1 2 3 45 6 7 8 91011>>