HomeSort by relevance Sort by last modified time
    Searched refs:PhoneAccount (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /packages/services/Telecomm/src/com/android/server/telecom/
RingtoneFactory.java 29 import android.telecom.PhoneAccount;
TelecomServiceImpl.java 43 import android.telecom.PhoneAccount;
252 public PhoneAccount getPhoneAccount(PhoneAccountHandle accountHandle) {
292 public List<PhoneAccount> getAllPhoneAccounts() {
369 public void registerPhoneAccount(PhoneAccount account) {
382 if (account.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)) {
385 if (account.hasCapabilities(PhoneAccount.CAPABILITY_MULTI_USER)) {
    [all...]
CallLogManager.java 32 import android.telecom.PhoneAccount;
362 PhoneAccount phoneAccount = mPhoneAccountRegistrar
364 if (phoneAccount != null &&
365 phoneAccount.hasCapabilities(PhoneAccount.CAPABILITY_MULTI_USER)) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
ShowOrCreateActivity.java 33 import android.telecom.PhoneAccount;
136 } else if (PhoneAccount.SCHEME_TEL.equals(scheme)) {
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallerInfoUtils.java 7 import android.telecom.PhoneAccount;
84 PhoneAccount.SCHEME_VOICEMAIL.equals(call.getHandle().getScheme())) ||
Log.java 20 import android.telecom.PhoneAccount;
112 if (!PhoneAccount.SCHEME_TEL.equals(uri.getScheme())) {
Call.java 29 import android.telecom.PhoneAccount;
485 PhoneAccount phoneAccount =
487 if (phoneAccount != null) {
488 mIsCallSubjectSupported = phoneAccount.hasCapabilities(
489 PhoneAccount.CAPABILITY_CALL_SUBJECT);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 33 import android.telecom.PhoneAccount;
224 .getDefaultOutgoingPhoneAccount(mContext, PhoneAccount.SCHEME_TEL);
PhoneCallDetailsHelper.java 28 import android.telecom.PhoneAccount;
132 if (color == PhoneAccount.NO_HIGHLIGHT_COLOR) {
  /packages/apps/Dialer/src/com/android/dialer/util/
TelecomUtil.java 28 import android.telecom.PhoneAccount;
120 public static PhoneAccount getPhoneAccount(Context context, PhoneAccountHandle handle) {
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 25 import android.telecom.PhoneAccount;
338 return Uri.fromParts(PhoneAccount.SCHEME_SIP, number, null);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelecomManagerFacade.java 33 import android.telecom.PhoneAccount;
116 public List<PhoneAccount> telecomGetAllPhoneAccounts() {
147 @Rpc(description = "Set the user-chosen default PhoneAccount for making outgoing phone calls.")
170 @Rpc(description = "Get the user-chosen default PhoneAccount for making outgoing phone calls.")
175 @Rpc(description = "Set the PhoneAccount corresponding to user selected subscription id " +
185 PhoneAccount phoneAccount =
187 if (subId == mTelephonyManager.getSubIdForPhoneAccount(phoneAccount)) {
  /packages/apps/Dialer/src/com/android/dialer/
SpecialCharSequenceMgr.java 33 import android.telecom.PhoneAccount;
254 PhoneAccount.SCHEME_TEL));
303 TelecomUtil.getDefaultOutgoingPhoneAccount(context, PhoneAccount.SCHEME_TEL));
  /packages/apps/Settings/src/com/android/settings/sim/
SimDialogActivity.java 26 import android.telecom.PhoneAccount;
130 private void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle phoneAccount) {
132 telecomManager.setUserSelectedOutgoingPhoneAccount(phoneAccount);
143 final PhoneAccount phoneAccount = telecomManager.getPhoneAccount(phoneAccountHandle);
144 if (subId == telephonyManager.getSubIdForPhoneAccount(phoneAccount)) {
213 final PhoneAccount phoneAccount =
215 list.add((String)phoneAccount.getLabel());
216 int subId = telephonyManager.getSubIdForPhoneAccount(phoneAccount);
    [all...]
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionService.java 32 import android.telecom.PhoneAccount;
357 Uri.fromParts(PhoneAccount.SCHEME_TEL, getDummyNumber(
409 Uri.fromParts(PhoneAccount.SCHEME_TEL, getDummyNumber(false), null)
  /cts/tests/tests/telecom/src/android/telecom/cts/
BaseRemoteTelecomTest.java 27 import android.telecom.PhoneAccount;
CallDetailsTest.java 32 import android.telecom.PhoneAccount;
84 PhoneAccount account = setupConnectionService(
  /frameworks/base/telecomm/java/android/telecom/
DefaultDialerManager.java 172 dialIntentWithTelScheme.setData(Uri.fromParts(PhoneAccount.SCHEME_TEL, "", null));
TelecomManager.java 73 * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog
74 * and each app that registers a {@link PhoneAccount} should provide one if desired.
76 * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone
79 * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the
80 * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this
106 * {@link PhoneAccount} preferences.
193 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
542 * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with
543 * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of th
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 23 import android.telecom.PhoneAccount;
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 28 import android.telecom.PhoneAccount;
170 .getDefaultOutgoingPhoneAccount(PhoneAccount.SCHEME_TEL);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 28 import android.telecom.PhoneAccount;
150 final Uri callUri = Uri.fromParts(PhoneAccount.SCHEME_SIP, address, null);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 28 import android.telecom.PhoneAccount;
248 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
  /packages/services/Telephony/src/com/android/phone/
CallController.java 33 import android.telecom.PhoneAccount;
459 scheme.equals(PhoneAccount.SCHEME_VOICEMAIL);
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallLogManagerTest.java 36 import android.telecom.PhoneAccount;
394 PhoneAccount.CAPABILITY_MULTI_USER));
426 PhoneAccount.CAPABILITY_MULTI_USER));
458 PhoneAccount.CAPABILITY_MULTI_USER));
    [all...]

Completed in 2433 milliseconds

1 23 4 5