HomeSort by relevance Sort by last modified time
    Searched full:accounthandle (Results 26 - 50 of 61) sorted by null

12 3

  /packages/apps/Dialer/src/com/android/dialer/util/
TelecomUtil.java 141 public static boolean isVoicemailNumber(Context context, PhoneAccountHandle accountHandle,
145 accountHandle, number);
151 public static String getVoicemailNumber(Context context, PhoneAccountHandle accountHandle) {
154 getTelephonyManager(context), accountHandle);
  /packages/services/Telephony/src/com/android/phone/settings/
PhoneAccountSettingsFragment.java 429 Context context, PhoneAccountHandle accountHandle) {
431 context, accountHandle, TelecomManager.ACTION_CONFIGURE_PHONE_ACCOUNT);
436 context, accountHandle, LEGACY_ACTION_CONFIGURE_PHONE_ACCOUNT);
438 Log.w(LOG_TAG, "Phone account using old configuration intent: " + accountHandle);
445 Context context, PhoneAccountHandle accountHandle, String actionStr) {
446 if (accountHandle == null || accountHandle.getComponentName() == null ||
447 TextUtils.isEmpty(accountHandle.getComponentName().getPackageName())) {
453 intent.setPackage(accountHandle.getComponentName().getPackageName());
455 intent.putExtra(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, accountHandle);
    [all...]
  /frameworks/base/core/java/android/provider/
CallLog.java 483 * @param accountHandle The accountHandle object identifying the provider of the call
493 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
496 presentation, callType, features, accountHandle, start, duration,
516 * @param accountHandle The accountHandle object identifying the provider of the call
532 int features, PhoneAccountHandle accountHandle, long start, int duration,
535 features, accountHandle, start, duration, dataUsage, addForAllUsers,
555 * @param accountHandle The accountHandle object identifying the provider of the cal
    [all...]
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionService.java 348 PhoneAccountHandle accountHandle = request.getAccountHandle();
351 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
397 "Invalid inputs: " + accountHandle + " " + componentName));
404 PhoneAccountHandle accountHandle = request.getAccountHandle();
406 if (accountHandle != null && componentName.equals(accountHandle.getComponentName())) {
422 "Invalid inputs: " + accountHandle + " " + componentName));
  /frameworks/base/telecomm/java/android/telecom/
ParcelableCall.java 73 PhoneAccountHandle accountHandle,
95 mAccountHandle = accountHandle;
282 PhoneAccountHandle accountHandle = source.readParcelable(classLoader);
308 accountHandle,
TelecomManager.java 600 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
603 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
    [all...]
InCallAdapter.java 198 * @param accountHandle The PhoneAccountHandle through which to place the call.
201 public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle,
204 mAdapter.phoneAccountSelected(callId, accountHandle, setDefault);
PhoneAccount.java 245 public Builder(PhoneAccountHandle accountHandle, CharSequence label) {
246 this.mAccountHandle = accountHandle;
468 PhoneAccountHandle accountHandle,
470 return new Builder(accountHandle, label);
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
TestTelecomCall.java 50 PhoneAccountHandle accountHandle,
80 PhoneAccountHandle.class, /* accountHandle */
94 callerDisplayNamePresentation, accountHandle, capabilities, properties,
ExternalCallListTest.java 130 "handle"), /* accountHandle */
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnectionService.java 77 PhoneAccountHandle accountHandle = request.getAccountHandle();
79 if (!Objects.equals(accountHandle.getComponentName(), sipComponentName)) {
112 String profileName = accountHandle.getId();
SipAccountRegistry.java 131 for (PhoneAccountHandle accountHandle : accountHandles) {
132 String profileName = SipUtil.getSipProfileNameFromPhoneAccount(accountHandle);
135 log("verifyAndPurgeInvalidPhoneAccounts, deleting account: " + accountHandle);
136 telecomManager.unregisterPhoneAccount(accountHandle);
SipUtil.java 117 PhoneAccountHandle accountHandle =
126 PhoneAccount.Builder builder = PhoneAccount.builder(accountHandle, profile.getDisplayName())
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 423 PhoneAccountHandle accountHandle = request.getAccountHandle();
425 if (accountHandle != null && PhoneUtils.EMERGENCY_ACCOUNT_HANDLE_ID.equals(
426 accountHandle.getId())) {
431 Phone phone = getPhoneForAccount(accountHandle, isEmergency);
485 PhoneAccountHandle accountHandle = request.getAccountHandle();
487 if (accountHandle != null && PhoneUtils.EMERGENCY_ACCOUNT_HANDLE_ID.equals(
488 accountHandle.getId())) {
493 Phone phone = getPhoneForAccount(accountHandle, isEmergency);
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/
FillCallLogTestActivity.java 565 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
571 if (accountHandle != null) {
572 PhoneAccount account = TelecomUtil.getPhoneAccount(this, accountHandle);
585 // accountHandle information
588 if (accountHandle != null) {
589 accountComponentString = accountHandle.getComponentName().flattenToString();
590 accountId = accountHandle.getId();
646 final PhoneAccountHandle accountHandle = getManualAccount();
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemViewHolder.java 169 public PhoneAccountHandle accountHandle;
334 && !mCallLogCache.isVoicemailNumber(accountHandle, number)
460 mCallLogCache.isVoicemailNumber(accountHandle, number);
565 mCallLogCache.doesAccountSupportCallSubject(accountHandle);
567 mCallLogCache.isVoicemailNumber(accountHandle, number);
640 final boolean isVoicemail = mCallLogCache.isVoicemailNumber(accountHandle, number);
688 accountHandle);
PhoneCallDetailsHelper.java 118 String accountLabel = mCallLogCache.getAccountLabel(details.accountHandle);
131 int color = mCallLogCache.getAccountColor(details.accountHandle);
209 && !mCallLogCache.isVoicemailNumber(details.accountHandle, details.number)) {
CallLogAsyncTaskUtil.java 199 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
206 boolean isVoicemail = PhoneNumberUtil.isVoicemailNumber(context, accountHandle, number);
221 details.accountHandle = accountHandle;
CallLogAdapter.java 501 final PhoneAccountHandle accountHandle = PhoneAccountUtils.getAccount(
506 mCallLogCache.isVoicemailNumber(accountHandle, number);
524 details.accountHandle = accountHandle;
559 views.accountHandle = accountHandle;
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 247 PhoneAccountHandle accountHandle = getItem(position);
248 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
  /cts/tests/tests/telecom/src/android/telecom/cts/
BaseTelecomTestWithMockServices.java 147 protected void tearDownConnectionService(PhoneAccountHandle accountHandle) throws Exception {
151 mTelecomManager.unregisterPhoneAccount(accountHandle);
157 protected void startCallTo(Uri address, PhoneAccountHandle accountHandle) {
159 if (accountHandle != null) {
160 intent.putExtra(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, accountHandle);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 146 mDetails.accountHandle);
176 PhoneNumberUtil.isVoicemailNumber(mContext, mDetails.accountHandle, mNumber);
458 PhoneNumberUtil.isVoicemailNumber(mContext, mDetails.accountHandle, mNumber);
PhoneCallDetails.java 93 public PhoneAccountHandle accountHandle;
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallCardPresenter.java 417 PhoneAccountHandle accountHandle = mPrimary.getAccountHandle();
418 if (accountHandle != null) {
420 PhoneAccount account = TelecomManagerCompat.getPhoneAccount(mgr, accountHandle);
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallAdapter.java 230 public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle,
239 mCallsManager.phoneAccountSelected(call, accountHandle, setDefault);

Completed in 602 milliseconds

12 3