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

  /frameworks/base/telecomm/java/android/telecom/
RemoteConnectionManager.java 57 PhoneAccountHandle accountHandle = request.getAccountHandle();
58 if (accountHandle == null) {
59 throw new IllegalArgumentException("accountHandle must be specified.");
64 throw new UnsupportedOperationException("accountHandle not supported: "
  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java 74 public final PhoneAccountHandle accountHandle;
104 PhoneAccountHandle accountHandle, int features, Long dataUsage, String transcription) {
106 duration, "", 0, "", null, null, 0, accountHandle, features, dataUsage,
115 int sourceType, PhoneAccountHandle accountHandle, int features, Long dataUsage,
131 this.accountHandle = accountHandle;
CallDetailActivity.java 421 final PhoneAccountHandle accountHandle = firstDetails.accountHandle;
428 phoneUtils.isVoicemailNumber(accountHandle, mNumber);
435 firstDetails.accountHandle,
455 String accountLabel = PhoneAccountUtils.getAccountLabel(context, accountHandle);
486 firstDetails.accountHandle,
543 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
563 && !new PhoneNumberUtilsWrapper(this).isVoicemailNumber(accountHandle, number)
567 formattedNumber = mPhoneNumberHelper.getDisplayNumber(accountHandle, number,
593 accountHandle, features, dataUsage, transcription)
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipBroadcastReceiver.java 61 PhoneAccountHandle accountHandle = intent.getParcelableExtra(SipUtil.EXTRA_PHONE_ACCOUNT);
62 if (accountHandle != null) {
65 TelecomManager.from(context).addNewIncomingCall(accountHandle, extras);
SipUtil.java 109 PhoneAccountHandle accountHandle =
118 PhoneAccount.Builder builder = PhoneAccount.builder(accountHandle, profile.getDisplayName())
SipConnectionService.java 78 PhoneAccountHandle accountHandle = request.getAccountHandle();
80 if (!Objects.equals(accountHandle.getComponentName(), sipComponentName)) {
113 String profileUri = accountHandle.getId();
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemViews.java 90 public PhoneAccountHandle accountHandle;
DefaultVoicemailNotifier.java 123 PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
126 name = mPhoneNumberHelper.getDisplayName(accountHandle, newCall.number,
CallLogAdapter.java 653 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
681 views.accountHandle = accountHandle;
689 mPhoneNumberUtilsWrapper.isVoicemailNumber(accountHandle, number);
789 geocode, callTypes, date, duration, accountHandle, features, dataUsage,
794 sourceType, accountHandle, features, dataUsage, transcription);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 190 PhoneAccountHandle accountHandle = getItem(position);
191 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 58 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
66 this.accountHandle = accountHandle;
79 public final PhoneAccountHandle accountHandle;
143 final PhoneAccountHandle accountHandle = call.getTargetPhoneAccount();
148 callLogType, callFeatures, accountHandle, creationTime, age, null);
169 PhoneAccountHandle accountHandle,
191 callType, features, accountHandle, start, duration, dataUsage);
260 c.callType, c.features, c.accountHandle, c.timestamp, c.durationInSec,
TelecomService.java 224 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
228 mPhoneAccountRegistrar.setUserSelectedOutgoingPhoneAccount(accountHandle);
277 public PhoneAccount getPhoneAccount(PhoneAccountHandle accountHandle) {
279 if (!isVisibleToCaller(accountHandle)) {
280 Log.w(this, "%s is not visible for the calling user", accountHandle);
283 return mPhoneAccountRegistrar.getPhoneAccountInternal(accountHandle);
285 Log.e(this, e, "getPhoneAccount %s", accountHandle);
332 PhoneAccountHandle accountHandle = mPhoneAccountRegistrar.getSimCallManager();
333 if (!isVisibleToCaller(accountHandle)) {
334 Log.w(this, "%s is not visible for the calling user", accountHandle);
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionService.java 301 PhoneAccountHandle accountHandle = request.getAccountHandle();
304 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
341 "Invalid inputs: " + accountHandle + " " + componentName));
348 PhoneAccountHandle accountHandle = request.getAccountHandle();
350 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
366 "Invalid inputs: " + accountHandle + " " + componentName));
  /packages/apps/InCallUI/src/com/android/incallui/
CallCardPresenter.java 281 PhoneAccountHandle accountHandle = mPrimary.getAccountHandle();
282 if (accountHandle != null) {
284 PhoneAccount account = mgr.getPhoneAccount(accountHandle);
555 PhoneAccountHandle accountHandle = call.getAccountHandle();
556 if (accountHandle == null) {
559 return InCallPresenter.getInstance().getTelecomManager().getPhoneAccount(accountHandle);
InCallPresenter.java 555 public void handleAccountSelection(PhoneAccountHandle accountHandle, boolean setDefault) {
559 TelecomAdapter.getInstance().phoneAccountSelected(callId, accountHandle, setDefault);
    [all...]
  /prebuilts/sdk/system_current/
android.jar 

Completed in 256 milliseconds