HomeSort by relevance Sort by last modified time
    Searched refs:phoneAccountHandle (Results 1 - 6 of 6) sorted by null

  /packages/services/Telecomm/src/com/android/server/telecom/
CallReceiver.java 10 import android.telecom.PhoneAccountHandle;
60 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra(
74 Call call = getCallsManager().startOutgoingCall(handle, phoneAccountHandle, clientExtras);
94 PhoneAccountHandle phoneAccountHandle = intent.getParcelableExtra(
97 if (phoneAccountHandle == null) {
101 if (phoneAccountHandle.getComponentName() == null) {
115 phoneAccountHandle.getComponentName());
116 getCallsManager().processIncomingCallIntent(phoneAccountHandle, clientExtras)
    [all...]
TelecomServiceImpl.java 36 import android.telecom.PhoneAccountHandle;
158 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
168 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
178 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
190 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
200 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
210 public List<PhoneAccountHandle> getPhoneAccountsForPackage(String packageName) {
220 public PhoneAccount getPhoneAccount(PhoneAccountHandle accountHandle) {
250 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
260 public PhoneAccountHandle getSimCallManager()
    [all...]
CallsManager.java 32 import android.telecom.PhoneAccountHandle;
338 * @param phoneAccountHandle The phone account which contains the component name of the
342 void processIncomingCallIntent(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
351 phoneAccountHandle,
361 void addNewUnknownCall(PhoneAccountHandle phoneAccountHandle, Bundle extras) {
370 phoneAccountHandle,
386 * @param phoneAccountHandle The phone account which contains the component name of the
390 Call startOutgoingCall(Uri handle, PhoneAccountHandle phoneAccountHandle, Bundle extras)
    [all...]
PhoneAccountRegistrar.java 29 import android.telecom.PhoneAccountHandle;
65 * Handles writing and reading PhoneAccountHandle registration entries. This is a simple verbatim
69 * the {@code ComponentName}s they are declaring in their {@code PhoneAccountHandle}s.
73 public static final PhoneAccountHandle NO_ACCOUNT_SELECTED =
74 new PhoneAccountHandle(new ComponentName("null", "null"), "NO_ACCOUNT_SELECTED");
118 * @return The {@link PhoneAccountHandle} to use.
120 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
121 final PhoneAccountHandle userSelected = getUserSelectedOutgoingPhoneAccount();
132 List<PhoneAccountHandle> outgoing = getCallCapablePhoneAccounts(uriScheme);
146 PhoneAccountHandle getUserSelectedOutgoingPhoneAccount()
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipUtil.java 30 import android.telecom.PhoneAccountHandle;
74 * Creates a {@link PhoneAccountHandle} from the specified SIP URI.
76 static PhoneAccountHandle createAccountHandle(Context context, String sipUri) {
77 return new PhoneAccountHandle(
82 * Determines the SIP Uri for a specified {@link PhoneAccountHandle}.
84 * @param phoneAccountHandle The {@link PhoneAccountHandle}.
87 static String getSipUriFromPhoneAccount(PhoneAccountHandle phoneAccountHandle) {
88 if (phoneAccountHandle == null)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 26 import android.telecom.PhoneAccountHandle;
84 * Registers the specified account with Telecom as a PhoneAccountHandle.
90 PhoneAccountHandle phoneAccountHandle =
152 PhoneAccount account = PhoneAccount.builder(phoneAccountHandle, label)
168 public PhoneAccountHandle getPhoneAccountHandle() {
249 static PhoneAccountHandle makePstnPhoneAccountHandle(Phone phone) {
253 private static PhoneAccountHandle makePstnPhoneAccountHandleWithPrefix(
260 return new PhoneAccountHandle(pstnConnectionServiceName, id);
265 * specified {@link PhoneAccountHandle}
    [all...]

Completed in 6452 milliseconds