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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyCapabilities.java 21 import com.android.internal.telephony.Phone;
24 * Utilities that check if the phone supports specified capabilities.
34 * Return true if the current phone supports ECM ("Emergency Callback
47 public static boolean supportsEcm(Phone phone) {
48 Rlog.d(LOG_TAG, "supportsEcm: Phone type = " + phone.getPhoneType() +
49 " Ims Phone = " + phone.getImsPhone());
50 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA |
    [all...]
PhoneSubInfoController.java 46 private final Phone[] mPhone;
50 public PhoneSubInfoController(Context context, Phone[] phone) {
51 mPhone = phone;
71 final Phone phone = mPhone[phoneId]; local
72 if (phone != null) {
73 phone.getContext().enforceCallingOrSelfPermission(
76 return phone.getDeviceId();
78 loge("getDeviceIdForPhone phone " + phoneId + " is null")
84 Phone phone = getPhone(subId); local
97 Phone phone = getPhone(subId); local
114 Phone phone = getPhone(subId); local
131 Phone phone = getPhone(subId); local
151 Phone phone = getPhone(subId); local
168 Phone phone = getPhone(subId); local
186 Phone phone = getPhone(subId); local
203 Phone phone = getPhone(subId); local
220 Phone phone = getPhone(subId); local
240 Phone phone = getPhone(subId); local
257 Phone phone = getPhone(subId); local
308 Phone phone = getPhone(getDefaultSubscription()); local
320 Phone phone = getPhone(getDefaultSubscription()); local
332 Phone phone = getPhone(getDefaultSubscription()); local
344 Phone phone = getPhone(getDefaultSubscription()); local
356 Phone phone = getPhone(getDefaultSubscription()); local
368 Phone phone = getPhone(getDefaultSubscription()); local
381 Phone phone = getPhone(subId); local
413 Phone phone = getPhone(subId); local
    [all...]
TelephonyComponentFactory.java 51 public GsmCdmaCallTracker makeGsmCdmaCallTracker(GsmCdmaPhone phone) {
52 return new GsmCdmaCallTracker(phone);
55 public SmsStorageMonitor makeSmsStorageMonitor(Phone phone) {
56 return new SmsStorageMonitor(phone);
63 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) {
64 return new ServiceStateTracker(phone, ci);
67 public DcTracker makeDcTracker(Phone phone) {
68 return new DcTracker(phone);
    [all...]
CallManager.java 45 * and control calls. It implements Phone interface.
92 // list of registered phones, which are Phone objs
93 private final ArrayList<Phone> mPhones;
108 private final HashMap<Phone, CallManagerHandler> mHandlerMap = new HashMap<>();
110 // default phone as the first phone registered, which is Phone obj
111 private Phone mDefaultPhone;
190 mPhones = new ArrayList<Phone>();
206 * Returns all the registered phone objects
338 Phone phone = null; local
351 Phone phone = null; local
1874 Phone phone = getPhone(subId); local
1951 Phone phone = getPhone(subId); local
1989 Phone phone = getPhone(subId); local
    [all...]
CellBroadcastHandler.java 36 private CellBroadcastHandler(Context context, Phone phone) {
37 this("CellBroadcastHandler", context, phone);
40 protected CellBroadcastHandler(String debugTag, Context context, Phone phone) {
41 super(debugTag, context, phone);
49 public static CellBroadcastHandler makeCellBroadcastHandler(Context context, Phone phone) {
50 CellBroadcastHandler handler = new CellBroadcastHandler(context, phone);
  /packages/apps/PhoneCommon/src/com/android/phone/common/
PhoneConstants.java 17 package com.android.phone.common;
20 * Constants related to phone operations.
24 /** Copied from PhoneApp. See comments in Phone app for more detail. */
25 // TODO: Change phone app to rely on this also.
26 public static final String EXTRA_CALL_ORIGIN = "com.android.phone.CALL_ORIGIN";
  /packages/services/Telephony/src/com/android/phone/
InCallScreen.java 17 package com.android.phone;
IccProvider.java 17 package com.android.phone;
INetworkQueryService.aidl 17 package com.android.phone;
19 import com.android.phone.INetworkQueryServiceCallback;
23 * Phone application lets this service interface handle carrier
24 * availability queries instead of making direct calls to the Phone layer.
INetworkQueryServiceCallback.aidl 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
  /packages/services/Telephony/src/com/android/phone/common/mail/
Fetchable.java 16 package com.android.phone.common.mail;
BodyPart.java 16 package com.android.phone.common.mail;
Flag.java 16 package com.android.phone.common.mail;
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailNotificationSettingsUtil.java 17 package com.android.phone.settings;
27 import com.android.internal.telephony.Phone;
28 import com.android.phone.R;
48 public static void setVibrationEnabled(Phone phone, boolean isEnabled) {
49 SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(phone.getContext());
51 editor.putBoolean(getVoicemailVibrationSharedPrefsKey(phone), isEnabled);
55 public static boolean isVibrationEnabled(Phone phone) {
56 SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(phone.getContext())
    [all...]
SettingsConstants.java 17 package com.android.phone.settings;
23 // Dtmf tone type setting value for CDMA phone
VoicemailRingtonePreference.java 1 package com.android.phone.settings;
12 import com.android.internal.telephony.Phone;
13 import com.android.phone.common.util.SettingsUtil;
25 private Phone mPhone;
42 public void init(Phone phone) {
43 mPhone = phone;
46 VoicemailNotificationSettingsUtil.getRingtoneUri(phone);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneFactoryTest.java 30 Phone phone = PhoneFactory.getDefaultPhone(); local
36 Phone phone = PhoneFactory.getPhone(0); local
42 Phone[] phone = PhoneFactory.getPhones(); local
  /external/nanopb-c/tests/basic_buffer/
decode_buffer.c 34 Person_PhoneNumber *phone = &person.phone[i]; local
35 printf("phone {\n");
36 printf(" number: \"%s\"\n", phone->number);
38 if (phone->has_type)
40 switch (phone->type)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
VelocityTrackerInterface.java 17 package com.android.systemui.statusbar.phone;
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 30 Person_PhoneNumber *phone = &person.phone[i]; local
31 printf("phone {\n");
32 printf(" number: \"%s\"\n", phone->number);
34 if (phone->has_type)
36 switch (phone->type)
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestInCallServiceImpl.java 23 import android.telecom.Phone;
36 private Phone mPhone;
38 private Phone.Listener mPhoneListener = new Phone.Listener() {
40 public void onCallAdded(Phone phone, Call call) {
51 public void onCallRemoved(Phone phone, Call call) {
58 public void onPhoneCreated(Phone phone) {
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/text/
BidiFormatterSupport.java 32 private static String phone = "+1 650 253 0000"; field in class:BidiFormatterSupport
40 String formattedText = String.format(text, phone);
46 String wrappedPhone = BidiFormatter.getInstance(true /* rtlContext */).unicodeWrap(phone);
  /frameworks/base/telephony/java/android/telephony/
CellLocation.java 40 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.getService("phone")); local
41 if (phone != null) {
42 phone.updateServiceLocation();
91 * location, or null for unknown/none phone radio types.
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
TextBody.java 16 package com.android.phone.common.mail.internet;
20 import com.android.phone.common.mail.Body;
21 import com.android.phone.common.mail.MessagingException;

Completed in 996 milliseconds

1 2 3 4 5 6 7 8 91011>>