HomeSort by relevance Sort by last modified time
    Searched defs:phoneAccount (Results 1 - 8 of 8) sorted by null

  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
CallNotificationReceiver.java 76 PhoneAccountHandle phoneAccount = new PhoneAccountHandle(
88 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras);
93 PhoneAccountHandle phoneAccount = new PhoneAccountHandle(
106 TelecomManager.from(context).addNewUnknownCall(phoneAccount, extras);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipAccountRegistry.java 23 import android.telecom.PhoneAccount;
34 * Manages the {@link PhoneAccount} entries for SIP calling.
121 * {@link PhoneAccount}.
146 * Stops a SIP profile and un-registers its associated {@link android.telecom.PhoneAccount}.
163 // Un-register its PhoneAccount.
182 * specified SIP profile and registering its {@link android.telecom.PhoneAccount}.
216 // Register a PhoneAccount for the profile and optionally enable the primary
219 PhoneAccount phoneAccount = SipUtil.createPhoneAccount(context, profile);
220 telecomManager.registerPhoneAccount(phoneAccount);
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
PhoneAccount.java 45 * {@link TelecomManager} uses registered {@link PhoneAccount}s to present the user with
46 * alternative options when placing a phone call. When building a {@link PhoneAccount}, the app
52 public class PhoneAccount implements Parcelable {
55 * Flag indicating that this {@code PhoneAccount} can act as a connection manager for
56 * other connections. The {@link ConnectionService} associated with this {@code PhoneAccount}
61 * {@link ConnectionService} associated with this {@code PhoneAccount} will be attempted first
69 * Flag indicating that this {@code PhoneAccount} can make phone calls in place of
82 * Flag indicating that this {@code PhoneAccount} represents a built-in PSTN SIM
85 * Only the Android framework can register a {@code PhoneAccount} having this capability.
92 * Flag indicating that this {@code PhoneAccount} is capable of placing video calls
    [all...]
  /packages/apps/Settings/src/com/android/settings/sim/
SimDialogActivity.java 27 import android.telecom.PhoneAccount;
134 private void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle phoneAccount) {
136 telecomManager.setUserSelectedOutgoingPhoneAccount(phoneAccount);
146 final PhoneAccount phoneAccount = telecomManager.getPhoneAccount(phoneAccountHandle);
149 if (phoneAccount.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)
219 final PhoneAccount phoneAccount =
221 list.add((String)phoneAccount.getLabel())
    [all...]
SimSettings.java 231 final PhoneAccountHandle phoneAccount =
235 simPref.setSummary(phoneAccount == null
237 : (String)telecomManager.getPhoneAccount(phoneAccount).getLabel());
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionProcessor.java 24 import android.telecom.PhoneAccount;
51 // The PhoneAccount describing the target connection service which we will
54 // The PhoneAccount which we will tell the target connection service to use
180 // If the target PhoneAccount differs from the ConnectionManager phone acount, ensure it
185 "Target PhoneAccount does not have BIND_CONNECTION_SERVICE for attempt: %s",
194 PhoneAccountHandle phoneAccount = attempt.connectionManagerPhoneAccount;
197 phoneAccount.getComponentName(),
198 phoneAccount.getUserHandle());
268 PhoneAccount targetPhoneAccount = mPhoneAccountRegistrar.getPhoneAccount(
271 PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION) != 0
    [all...]
PhoneAccountRegistrar.java 35 import android.telecom.PhoneAccount;
138 PhoneAccount account = getPhoneAccountInternal(accountHandle);
140 || !account.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)
162 // If there is a default PhoneAccount, ensure it supports calls to handles with the
164 final PhoneAccount userSelectedAccount = getPhoneAccountInternal(userSelected);
190 * @return The user-selected outgoing {@link PhoneAccount}, or null if it hasn't been set (or
215 for (PhoneAccount m : mState.accounts) {
229 PhoneAccount.CAPABILITY_CALL_PROVIDER)) {
236 PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)) {
257 PhoneAccount callManagerAccount = getPhoneAccountInternal(callManager)
    [all...]
  /prebuilts/sdk/system_current/
android.jar 

Completed in 238 milliseconds