Searched refs:phone (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/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 Rlog.d(LOG_TAG, "supportsEcm: Phone type = " + phone.getPhoneType() +
49 " Ims Phone = " + phone.getImsPhone());
50 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA ||
51 phone.getImsPhone() != null);
55 * Return true if the current phone supports Over The Air Service
69 * "if (CDMA)" checks sprinkled throughout the phone app.
71 public static boolean supportsOtasp(Phone phone) { argument
80 supportsVoiceMessageCount(Phone phone) argument
92 supportsNetworkSelection(Phone phone) argument
104 getDeviceIdLabel(Phone phone) argument
126 supportsConferenceCallManagement(Phone phone) argument
140 supportsHoldAndUnhold(Phone phone) argument
160 supportsAnswerAndHold(Phone phone) argument
[all...]
H A DTelephonyComponentFactory.java52 public GsmCdmaCallTracker makeGsmCdmaCallTracker(GsmCdmaPhone phone) { argument
53 return new GsmCdmaCallTracker(phone);
56 public SmsStorageMonitor makeSmsStorageMonitor(Phone phone) { argument
57 return new SmsStorageMonitor(phone);
64 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) { argument
65 return new ServiceStateTracker(phone, ci);
71 public NitzStateMachine makeNitzStateMachine(GsmCdmaPhone phone) { argument
72 return new NitzStateMachine(phone);
75 public SimActivationTracker makeSimActivationTracker(Phone phone) { argument
76 return new SimActivationTracker(phone);
79 makeDcTracker(Phone phone) argument
83 makeCarrierSignalAgent(Phone phone) argument
87 makeCarrierActionAgent(Phone phone) argument
91 makeCarrierIdentifier(Phone phone) argument
95 makeIccPhoneBookInterfaceManager(Phone phone) argument
99 makeIccSmsInterfaceManager(Phone phone) argument
111 makeEriManager(Phone phone, Context context, int eriFileSource) argument
162 makeDeviceStateMonitor(Phone phone) argument
177 makeLocaleTracker(Phone phone, Looper looper) argument
[all...]
H A DPhoneSubInfoController.java48 public PhoneSubInfoController(Context context, Phone[] phone) { argument
49 mPhone = phone;
66 final Phone phone = mPhone[phoneId];
67 if (phone != null) {
69 mContext, phone.getSubId(), callingPackage, "getDeviceId")) {
72 return phone.getDeviceId();
74 loge("getDeviceIdForPhone phone " + phoneId + " is null");
80 Phone phone = getPhone(subId);
81 if (phone != null) {
86 return phone
[all...]
H A DCallManager.java110 // default phone as the first phone registered, which is Phone obj
206 * Returns all the registered phone objects.
207 * @return all the registered phone objects.
219 for (Phone phone : mPhones) {
220 if (phone.getSubId() == subId &&
221 phone.getPhoneType() != PhoneConstants.PHONE_TYPE_IMS) {
222 p = phone;
232 * then the phone state is RINGING not OFFHOOK
238 for (Phone phone
368 registerPhone(Phone phone) argument
393 unregisterPhone(Phone phone) argument
557 registerForPhoneStates(Phone phone) argument
625 unregisterForPhoneStates(Phone phone) argument
916 dial(Phone phone, String dialString, int videoState) argument
988 dial(Phone phone, String dialString, UUSInfo uusInfo, int videoState) argument
1026 canDial(Phone phone) argument
1128 getPendingMmiCodes(Phone phone) argument
1141 sendUssdResponse(Phone phone, String ussdMessge) argument
[all...]
H A DCarrierSmsUtils.java44 * @param phone object from telephony
50 Context context, Phone phone, Intent intent) {
52 String carrierImsPackage = getCarrierImsPackage(context, phone);
74 private static String getCarrierImsPackage(Context context, Phone phone) { argument
84 PersistableBundle config = cm.getConfigForSubId(phone.getSubId());
86 if (VDBG) Rlog.v(TAG, "No CarrierConfig for subId:" + phone.getSubId());
49 getCarrierImsPackageForIntent( Context context, Phone phone, Intent intent) argument
H A DCellBroadcastHandler.java42 private CellBroadcastHandler(Context context, Phone phone) { argument
43 this("CellBroadcastHandler", context, phone);
46 protected CellBroadcastHandler(String debugTag, Context context, Phone phone) { argument
47 super(debugTag, context, phone);
55 public static CellBroadcastHandler makeCellBroadcastHandler(Context context, Phone phone) { argument
56 CellBroadcastHandler handler = new CellBroadcastHandler(context, phone);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DPhoneFactoryTest.java30 Phone phone = PhoneFactory.getDefaultPhone();
36 Phone phone = PhoneFactory.getPhone(0);
42 Phone[] phone = PhoneFactory.getPhones();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DManagedProfileController.java15 package com.android.systemui.statusbar.phone;
17 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
H A DKeyguardDismissHandler.java17 package com.android.systemui.statusbar.phone;
H A DVelocityTrackerInterface.java17 package com.android.systemui.statusbar.phone;
H A DKeyguardDismissUtil.java17 package com.android.systemui.statusbar.phone;
H A DVelocityTrackerFactory.java17 package com.android.systemui.statusbar.phone;
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipTouchGesture.java17 package com.android.systemui.pip.phone;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeManagedProfileController.java19 import com.android.systemui.statusbar.phone.ManagedProfileController;
20 import com.android.systemui.statusbar.phone.ManagedProfileController.Callback;
H A DFakeStatusBarIconController.java20 import com.android.systemui.statusbar.phone.StatusBarIconController;
21 import com.android.systemui.statusbar.phone.StatusBarIconController.IconManager;
22 import com.android.systemui.statusbar.phone.StatusBarSignalPolicy.MobileIconState;
23 import com.android.systemui.statusbar.phone.StatusBarSignalPolicy.WifiIconState;
/frameworks/base/telephony/java/android/telephony/
H A DCellLocation.java40 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.getService("phone"));
41 if (phone != null) {
42 phone.updateServiceLocation();
91 * location, or null for unknown/none phone radio types.
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/text/
H A DBidiFormatterSupport.java33 private static String phone = "+1 650 253 0000"; field in class:BidiFormatterSupport
41 String formattedText = String.format(text, phone);
47 String wrappedPhone = BidiFormatter.getInstance(true /* rtlContext */).unicodeWrap(phone);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/text/
H A DBidiFormatterSupport.java33 private static String phone = "+1 650 253 0000"; field in class:BidiFormatterSupport
41 String formattedText = String.format(text, phone);
47 String wrappedPhone = BidiFormatter.getInstance(true /* rtlContext */).unicodeWrap(phone);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/
H A DBluetoothDialog.java22 import com.android.systemui.statusbar.phone.SystemUIDialog;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandler.java49 Phone phone) {
50 super("GsmInboundSmsHandler", context, storageMonitor, phone,
51 GsmCellBroadcastHandler.makeGsmCellBroadcastHandler(context, phone));
52 phone.mCi.setOnNewGsmSms(getHandler(), EVENT_NEW_SMS, null);
53 mDataDownloadHandler = new UsimDataDownloadHandler(phone.mCi);
72 SmsStorageMonitor storageMonitor, Phone phone) {
73 GsmInboundSmsHandler handler = new GsmInboundSmsHandler(context, storageMonitor, phone);
180 * Called when the phone changes the default method updates mPhone
184 * @param phone
187 protected void onUpdatePhoneObject(Phone phone) { argument
48 GsmInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, Phone phone) argument
71 makeInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, Phone phone) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalCall.java36 public ImsExternalCall(Phone phone, ImsExternalConnection connection) { argument
37 mPhone = phone;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIFactory.java47 import com.android.systemui.statusbar.phone.DozeParameters;
48 import com.android.systemui.statusbar.phone.KeyguardBouncer;
49 import com.android.systemui.statusbar.phone.KeyguardDismissUtil;
50 import com.android.systemui.statusbar.phone.LockIcon;
51 import com.android.systemui.statusbar.phone.LockscreenWallpaper;
52 import com.android.systemui.statusbar.phone.NotificationGroupManager;
53 import com.android.systemui.statusbar.phone.NotificationIconAreaController;
54 import com.android.systemui.statusbar.phone.ScrimController;
55 import com.android.systemui.statusbar.phone.ScrimState;
56 import com.android.systemui.statusbar.phone
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTesterDeactivateAll.java68 DcTesterDeactivateAll(Phone phone, DcController dcc, Handler handler) { argument
69 mPhone = phone;
81 phone.getContext().registerReceiver(sIntentReceiver, filter, null, handler);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DAutoAddTracker.java17 import static com.android.systemui.statusbar.phone.AutoTileManager.HOTSPOT;
18 import static com.android.systemui.statusbar.phone.AutoTileManager.INVERSION;
19 import static com.android.systemui.statusbar.phone.AutoTileManager.NIGHT;
20 import static com.android.systemui.statusbar.phone.AutoTileManager.SAVER;
21 import static com.android.systemui.statusbar.phone.AutoTileManager.WORK;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java59 Phone phone, CdmaSMSDispatcher smsDispatcher) {
60 super("CdmaInboundSmsHandler", context, storageMonitor, phone,
61 CellBroadcastHandler.makeCellBroadcastHandler(context, phone));
64 phone.mCi);
65 phone.mCi.setOnNewCdmaSms(getHandler(), EVENT_NEW_SMS, null);
84 SmsStorageMonitor storageMonitor, Phone phone, CdmaSMSDispatcher smsDispatcher) {
86 phone, smsDispatcher);
196 * Called when the phone changes the default method updates mPhone
200 * @param phone
203 protected void onUpdatePhoneObject(Phone phone) { argument
58 CdmaInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, Phone phone, CdmaSMSDispatcher smsDispatcher) argument
83 makeInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, Phone phone, CdmaSMSDispatcher smsDispatcher) argument
[all...]

Completed in 367 milliseconds

1234567891011>>