HomeSort by relevance Sort by last modified time
    Searched refs:accountHandle (Results 1 - 25 of 27) sorted by null

1 2

  /packages/apps/ContactsCommon/src/com/android/contacts/common/
CallUtil.java 62 public static Intent getCallIntent(String number, PhoneAccountHandle accountHandle) {
63 return getCallIntent(number, null, accountHandle);
69 public static Intent getCallIntent(Uri uri, PhoneAccountHandle accountHandle) {
70 return getCallIntent(uri, null, accountHandle);
77 String number, String callOrigin, PhoneAccountHandle accountHandle) {
78 return getCallIntent(getCallUri(number), callOrigin, accountHandle);
87 Uri uri, String callOrigin, PhoneAccountHandle accountHandle) {
88 return getCallIntent(uri, callOrigin, accountHandle,
105 String number, String callOrigin, PhoneAccountHandle accountHandle) {
106 return getCallIntent(getCallUri(number), callOrigin, accountHandle,
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
ConnectionRequest.java 40 * @param accountHandle The accountHandle which should be used to place the call.
45 PhoneAccountHandle accountHandle,
48 this(accountHandle, handle, extras, VideoProfile.VideoState.AUDIO_ONLY);
52 * @param accountHandle The accountHandle which should be used to place the call.
59 PhoneAccountHandle accountHandle,
63 mAccountHandle = accountHandle;
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: "
InCallAdapter.java 195 * @param accountHandle The PhoneAccountHandle through which to place the call
197 public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle) {
199 mAdapter.phoneAccountSelected(callId, accountHandle);
TelecomManager.java 375 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
378 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
405 * @param accountHandle The phone account handle of the account to set as the sim call manager.
408 public void setSimCallManager(PhoneAccountHandle accountHandle) {
411 getTelecomService().setSimCallManager(accountHandle);
614 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
618 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
621 getTelecomService().unregisterPhoneAccount(accountHandle);
ParcelableCall.java 71 PhoneAccountHandle accountHandle,
91 mAccountHandle = accountHandle;
254 PhoneAccountHandle accountHandle = source.readParcelable(classLoader);
278 accountHandle,
PhoneAccount.java 130 public Builder(PhoneAccountHandle accountHandle, CharSequence label) {
131 this.mAccountHandle = accountHandle;
251 PhoneAccountHandle accountHandle,
253 return new Builder(accountHandle, label);
Call.java 262 PhoneAccountHandle accountHandle,
275 mAccountHandle = accountHandle;
489 public void phoneAccountSelected(PhoneAccountHandle accountHandle) {
490 mInCallAdapter.phoneAccountSelected(mTelecomCallId, accountHandle);
  /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 108 PhoneAccountHandle accountHandle =
117 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/
IntentProvider.java 45 final PhoneAccountHandle accountHandle) {
49 return CallUtil.getCallIntent(number, accountHandle);
59 final PhoneAccountHandle accountHandle) {
63 return CallUtil.getVideoCallIntent(number, accountHandle);
CallLogListItemViews.java 90 public PhoneAccountHandle 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;
144 final PhoneAccountHandle accountHandle = call.getTargetPhoneAccount();
149 accountHandle, creationTime, age, null);
170 PhoneAccountHandle accountHandle,
192 callType, features, accountHandle, start, duration, dataUsage);
276 c.callType, c.features, c.accountHandle, c.timestamp, c.durationInSec,
TelecomServiceImpl.java 178 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
182 mPhoneAccountRegistrar.setUserSelectedOutgoingPhoneAccount(accountHandle);
220 public PhoneAccount getPhoneAccount(PhoneAccountHandle accountHandle) {
222 return mPhoneAccountRegistrar.getPhoneAccount(accountHandle);
224 Log.e(this, e, "getPhoneAccount %s", accountHandle);
270 public void setSimCallManager(PhoneAccountHandle accountHandle) {
274 mPhoneAccountRegistrar.setSimCallManager(accountHandle);
312 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
315 accountHandle.getComponentName().getPackageName());
316 mPhoneAccountRegistrar.unregisterPhoneAccount(accountHandle);
    [all...]
PhoneAccountRegistrar.java 161 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
162 if (accountHandle == null) {
168 if (Objects.equals(accountHandle, m.getAccountHandle())) {
176 accountHandle);
180 if (!getPhoneAccount(accountHandle).hasCapabilities(
183 accountHandle);
187 mState.defaultOutgoing = accountHandle;
378 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
380 if (Objects.equals(accountHandle, mState.accounts.get(i).getAccountHandle())) {
810 PhoneAccountHandle accountHandle = null
    [all...]
InCallAdapter.java 287 public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle) {
291 args.arg2 = accountHandle;
Call.java 503 void setConnectionManagerPhoneAccount(PhoneAccountHandle accountHandle) {
504 if (!Objects.equals(mConnectionManagerPhoneAccountHandle, accountHandle)) {
505 mConnectionManagerPhoneAccountHandle = accountHandle;
517 void setTargetPhoneAccount(PhoneAccountHandle accountHandle) {
518 if (!Objects.equals(mTargetPhoneAccountHandle, accountHandle)) {
519 mTargetPhoneAccountHandle = accountHandle;
    [all...]
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 49 void phoneAccountSelected(String callId, in PhoneAccountHandle accountHandle);
  /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));
  /frameworks/base/core/java/android/provider/
CallLog.java 378 * @param accountHandle The accountHandle object identifying the provider of the call
388 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
390 return addCall(ci, context, number, presentation, callType, features, accountHandle,
406 * @param accountHandle The accountHandle object identifying the provider of the call
419 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
444 // accountHandle information
447 if (accountHandle != null) {
448 accountComponentString = accountHandle.getComponentName().flattenToString()
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
SelectPhoneAccountDialogFragment.java 129 PhoneAccountHandle accountHandle = getItem(position);
130 PhoneAccount account = mTelecomManager.getPhoneAccount(accountHandle);
TelecomAdapter.java 235 void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle) {
237 getTelecommCallById(callId).phoneAccountSelected(accountHandle);
242 if (accountHandle == null) {
243 Log.e(this, "error phoneAccountSelected, accountHandle is null");
CallCardPresenter.java 273 PhoneAccountHandle accountHandle = mPrimary.getAccountHandle();
274 if (accountHandle != null) {
277 PhoneAccount account = mgr.getPhoneAccount(accountHandle);
513 PhoneAccountHandle accountHandle = call.getAccountHandle();
514 if (accountHandle == null) {
517 return getTelecomManager().getPhoneAccount(accountHandle);
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 377 private Phone getPhoneForAccount(PhoneAccountHandle accountHandle, boolean isEmergency) {
382 if (Objects.equals(mExpectedComponentName, accountHandle.getComponentName())) {
383 if (accountHandle.getId() != null) {
386 Long.parseLong(accountHandle.getId()));
389 Log.w(this, "Could not get subId from account: " + accountHandle.getId());

Completed in 786 milliseconds

1 2