Searched defs:phone (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimPhoneBookInterfaceManager.java36 public RuimPhoneBookInterfaceManager(CDMAPhone phone) { argument
37 super(phone);
64 IccFileHandler fh = phone.getIccFileHandler();
H A DCdmaDataConnection.java40 private CdmaDataConnection(CDMAPhone phone, String name, int id, RetryManager rm, argument
42 super(phone, name, id, rm, dct);
48 * @param phone the Phone
53 static CdmaDataConnection makeDataConnection(CDMAPhone phone, int id, RetryManager rm, argument
55 CdmaDataConnection cdmaDc = new CdmaDataConnection(phone,
89 phone.mCM.setupDataCall(
107 && !phone.isDnsCheckDisabled()) {
H A DCdmaLteServiceStateTracker.java61 public CdmaLteServiceStateTracker(CDMALTEPhone phone) { argument
62 super(phone, new CellInfoLte());
63 mCdmaLtePhone = phone;
289 int networkMode = android.provider.Settings.Global.getInt(phone.getContext()
377 && (phone.mDataConnectionTracker instanceof CdmaDataConnectionTracker)) {
379 phone.mDataConnectionTracker.dispose();
380 phone.mDataConnectionTracker = new GsmDataConnectionTracker(mCdmaLtePhone);
384 && (phone.mDataConnectionTracker instanceof GsmDataConnectionTracker)) {
386 phone.mDataConnectionTracker.dispose();
387 phone
[all...]
H A DRuimSmsInterfaceManager.java84 public RuimSmsInterfaceManager(CDMAPhone phone, SMSDispatcher dispatcher) { argument
85 super(phone);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java36 public SimPhoneBookInterfaceManager(GSMPhone phone) { argument
37 super(phone);
64 IccFileHandler fh = phone.getIccFileHandler();
H A DGsmDataConnection.java44 private GsmDataConnection(PhoneBase phone, String name, int id, RetryManager rm, argument
46 super(phone, name, id, rm, dct);
52 * @param phone the Phone
57 static GsmDataConnection makeDataConnection(PhoneBase phone, int id, RetryManager rm, argument
59 GsmDataConnection gsmDc = new GsmDataConnection(phone,
97 if (phone.getServiceState().getRoaming()) {
103 phone.mCM.setupDataCall(
130 && !phone.isDnsCheckDisabled()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCloseDragHandle.java17 package com.android.systemui.statusbar.phone;
H A DQuickSettingsScrollView.java17 package com.android.systemui.statusbar.phone;
H A DTickerView.java17 package com.android.systemui.statusbar.phone;
H A DTrackingPatternView.java17 package com.android.systemui.statusbar.phone;
H A DCarrierLabel.java17 package com.android.systemui.statusbar.phone;
H A DQuickSettingsTileView.java17 package com.android.systemui.statusbar.phone;
H A DIconMerger.java17 package com.android.systemui.statusbar.phone;
H A DPanelHolder.java17 package com.android.systemui.statusbar.phone;
H A DQuickSettingsContainerView.java17 package com.android.systemui.statusbar.phone;
H A DStatusBarWindowView.java17 package com.android.systemui.statusbar.phone;
H A DNotificationPanelView.java17 package com.android.systemui.statusbar.phone;
H A DPhoneStatusBarPolicy.java17 package com.android.systemui.statusbar.phone;
H A DSettingsPanelView.java17 package com.android.systemui.statusbar.phone;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyCapabilities.java24 * 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) { argument
48 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA);
52 * Return true if the current phone supports Over The Air Service
66 * "if (CDMA)" checks sprinkled throughout the phone app.
68 public static boolean supportsOtasp(Phone phone) { argument
69 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA);
73 * Return true if the current phone can retrieve the voice message count.
77 public static boolean supportsVoiceMessageCount(Phone phone) { argument
89 supportsNetworkSelection(Phone phone) argument
101 getDeviceIdLabel(Phone phone) argument
123 supportsConferenceCallManagement(Phone phone) argument
137 supportsHoldAndUnhold(Phone phone) argument
156 supportsAnswerAndHold(Phone phone) argument
[all...]
H A DSmsStorageMonitor.java49 /** Context from phone object passed to constructor. */
68 * @param phone the Phone to use
70 public SmsStorageMonitor(PhoneBase phone) { argument
71 mContext = phone.getContext();
72 mCm = phone.mCM;
94 * Handles events coming from the phone stack. Overridden from handler.
H A DWapPushOverSms.java118 public WapPushOverSms(Phone phone, SMSDispatcher smsDispatcher) { argument
120 mContext = phone.getContext();
H A DIccPhoneBookInterfaceManager.java38 protected PhoneBase phone; field in class:IccPhoneBookInterfaceManager
106 public IccPhoneBookInterfaceManager(PhoneBase phone) { argument
107 this.phone = phone;
108 IccRecords r = phone.mIccRecords.get();
160 if (phone.getContext().checkCallingOrSelfPermission(
191 * phone book or erase/format the whole phonebook. Currently the email field
208 if (phone.getContext().checkCallingOrSelfPermission(
252 if (phone.getContext().checkCallingOrSelfPermission(
296 if (phone
[all...]
H A DIccSmsInterfaceManager.java39 protected IccSmsInterfaceManager(PhoneBase phone){ argument
40 mPhone = phone;
41 mContext = phone.getContext();
H A DPhoneSubInfo.java41 public PhoneSubInfo(Phone phone) { argument
42 mPhone = phone;
43 mContext = phone.getContext();
92 * Retrieves the phone number string for line 1.

Completed in 2910 milliseconds

12