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

123456

/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 DCallManager.java111 // default phone as the first phone registered, which is PhoneBase obj
207 * @param phone a Phone object
212 private static Phone getPhoneBase(Phone phone) { argument
213 if (phone instanceof PhoneProxy) {
214 return phone.getForegroundCall().getPhone();
216 return phone;
225 * they have same phone APIs, such as dial(). The real implementation, for
231 * So for phone returned by PhoneFacotry, which is used by PhoneApp,
232 * phone
406 registerPhone(Phone phone) argument
433 unregisterPhone(Phone phone) argument
596 registerForPhoneStates(Phone phone) argument
654 unregisterForPhoneStates(Phone phone) argument
953 dial(Phone phone, String dialString, int videoState) argument
1025 dial(Phone phone, String dialString, UUSInfo uusInfo, int videoState) argument
1060 canDial(Phone phone) argument
1162 getPendingMmiCodes(Phone phone) argument
1175 sendUssdResponse(Phone phone, String ussdMessge) argument
[all...]
H A DCellBroadcastHandler.java36 private CellBroadcastHandler(Context context, PhoneBase phone) { argument
37 this("CellBroadcastHandler", context, phone);
40 protected CellBroadcastHandler(String debugTag, Context context, PhoneBase phone) { argument
41 super(debugTag, context, phone);
49 public static CellBroadcastHandler makeCellBroadcastHandler(Context context, PhoneBase phone) { argument
50 CellBroadcastHandler handler = new CellBroadcastHandler(context, phone);
H A DSmsStorageMonitor.java50 /** Context from phone object passed to constructor. */
72 * @param phone the Phone to use
74 public SmsStorageMonitor(PhoneBase phone) { argument
75 mPhone = phone;
76 mContext = phone.getContext();
77 mCi = phone.mCi;
99 * Handles events coming from the phone stack. Overridden from handler.
H A DImsSMSDispatcher.java53 public ImsSMSDispatcher(PhoneBase phone, SmsStorageMonitor storageMonitor, argument
55 super(phone, usageMonitor, null);
60 mCdmaDispatcher = new CdmaSMSDispatcher(phone, usageMonitor, this);
61 mGsmInboundSmsHandler = GsmInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
62 storageMonitor, phone);
63 mCdmaInboundSmsHandler = CdmaInboundSmsHandler.makeInboundSmsHandler(phone.getContext(),
64 storageMonitor, phone, (CdmaSMSDispatcher) mCdmaDispatcher);
65 mGsmDispatcher = new GsmSMSDispatcher(phone, usageMonitor, this, mGsmInboundSmsHandler);
66 Thread broadcastThread = new Thread(new SmsBroadcastUndelivered(phone.getContext(),
74 /* Updates the phone objec
76 updatePhoneObject(PhoneBase phone) argument
[all...]
H A DPhoneFactory.java149 PhoneBase phone = null;
152 phone = new GSMPhone(context,
155 phone = new CDMALTEPhone(context,
160 sProxyPhones[i] = new PhoneProxy(phone);
165 // Set the default phone in base class.
195 Phone phone;
197 phone = new CDMALTEPhone(sContext, sCommandsInterfaces[phoneId],
200 return phone;
205 Phone phone = new GSMPhone(sContext, sCommandsInterfaces[phoneId],
207 return phone;
[all...]
H A DTelephonyTester.java37 * Telephony tester receives the following intents where {name} is the phone name
79 TelephonyTester(PhoneBase phone) { argument
80 mPhone = phone;
96 phone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone.getHandler());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DActivityStarter.java17 package com.android.systemui.statusbar.phone;
H A DVelocityTrackerInterface.java17 package com.android.systemui.statusbar.phone;
H A DBounceInterpolator.java17 package com.android.systemui.statusbar.phone;
H A DTickerView.java17 package com.android.systemui.statusbar.phone;
H A DVelocityTrackerFactory.java17 package com.android.systemui.statusbar.phone;
H A DKeyguardIndicationTextView.java17 package com.android.systemui.statusbar.phone;
/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();
85 * location, or null for unknown/none phone radio types.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandler.java47 PhoneBase phone) {
48 super("GsmInboundSmsHandler", context, storageMonitor, phone,
49 GsmCellBroadcastHandler.makeGsmCellBroadcastHandler(context, phone));
50 phone.mCi.setOnNewGsmSms(getHandler(), EVENT_NEW_SMS, null);
51 mDataDownloadHandler = new UsimDataDownloadHandler(phone.mCi);
70 SmsStorageMonitor storageMonitor, PhoneBase phone) {
71 GsmInboundSmsHandler handler = new GsmInboundSmsHandler(context, storageMonitor, phone);
169 * Called when the phone changes the default method updates mPhone
173 * @param phone
176 protected void onUpdatePhoneObject(PhoneBase phone) { argument
46 GsmInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, PhoneBase phone) argument
69 makeInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, PhoneBase phone) argument
[all...]
H A DSimPhoneBookInterfaceManager.java36 public SimPhoneBookInterfaceManager(GSMPhone phone) { argument
37 super(phone);
H A DGsmCellBroadcastHandler.java46 protected GsmCellBroadcastHandler(Context context, PhoneBase phone) { argument
47 super("GsmCellBroadcastHandler", context, phone);
48 phone.mCi.setOnNewGsmBroadcastSms(getHandler(), EVENT_NEW_SMS_MESSAGE, null);
63 PhoneBase phone) {
64 GsmCellBroadcastHandler handler = new GsmCellBroadcastHandler(context, phone);
62 makeGsmCellBroadcastHandler(Context context, PhoneBase phone) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTesterDeactivateAll.java68 DcTesterDeactivateAll(PhoneBase phone, DcController dcc, Handler handler) { argument
69 mPhone = phone;
81 phone.getContext().registerReceiver(sIntentReceiver, filter, null, handler);
H A DDcTesterFailBringUpAll.java77 DcTesterFailBringUpAll(PhoneBase phone, Handler handler) { argument
78 mPhone = phone;
91 phone.getContext().registerReceiver(mIntentReceiver, filter, null, handler);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java59 PhoneBase 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, PhoneBase phone, CdmaSMSDispatcher smsDispatcher) {
86 phone, smsDispatcher);
212 * Called when the phone changes the default method updates mPhone
216 * @param phone
219 protected void onUpdatePhoneObject(PhoneBase phone) { argument
58 CdmaInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, PhoneBase phone, CdmaSMSDispatcher smsDispatcher) argument
83 makeInboundSmsHandler(Context context, SmsStorageMonitor storageMonitor, PhoneBase phone, CdmaSMSDispatcher smsDispatcher) argument
[all...]
H A DRuimPhoneBookInterfaceManager.java36 public RuimPhoneBookInterfaceManager(CDMAPhone phone) { argument
37 super(phone);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationCustomViewWrapper.java22 import com.android.systemui.statusbar.phone.NotificationPanelView;
H A DEmptyShadeView.java27 import com.android.systemui.statusbar.phone.PhoneStatusBar;
/frameworks/base/telecomm/java/android/telecom/
H A DPhone.java40 * @param phone The {@code Phone} calling this method.
43 public void onAudioStateChanged(Phone phone, AudioState audioState) { } argument
50 * @param phone The {@code Phone} calling this method.
53 public void onBringToForeground(Phone phone, boolean showDialpad) { } argument
62 * @param phone The {@code Phone} calling this method.
65 public void onCallAdded(Phone phone, Call call) { } argument
73 * @param phone The {@code Phone} calling this method.
76 public void onCallRemoved(Phone phone, Call call) { } argument
79 * Called when the {@code Phone} ability to add more calls changes. If the phone cannot
83 * @param phone Th
86 onCanAddCallChanged(Phone phone, boolean canAddCall) argument
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapCard.java102 for (PhoneData phone : phones) {
104 jsonPhone.put("type", phone.getType());
105 jsonPhone.put("number", phone.getNumber());
106 jsonPhone.put("label", phone.getLabel());
107 jsonPhone.put("is_primary", phone.isPrimary());

Completed in 5210 milliseconds

123456