Searched defs:phoneAccount (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConference.java46 PhoneAccountHandle phoneAccount,
56 mPhoneAccount = phoneAccount;
135 PhoneAccountHandle phoneAccount = source.readParcelable(classLoader);
148 return new ParcelableConference(phoneAccount, state, capabilities, properties,
45 ParcelableConference( PhoneAccountHandle phoneAccount, int state, int connectionCapabilities, int connectionProperties, List<String> connectionIds, IVideoProvider videoProvider, int videoState, long connectTimeMillis, StatusHints statusHints, Bundle extras) argument
H A DParcelableConnection.java56 PhoneAccountHandle phoneAccount,
73 mPhoneAccount = phoneAccount;
194 PhoneAccountHandle phoneAccount = source.readParcelable(classLoader);
215 phoneAccount,
55 ParcelableConnection( PhoneAccountHandle phoneAccount, int state, int capabilities, int properties, Uri address, int addressPresentation, String callerDisplayName, int callerDisplayNamePresentation, IVideoProvider videoProvider, int videoState, boolean ringbackRequested, boolean isVoipAudioMode, long connectTimeMillis, StatusHints statusHints, DisconnectCause disconnectCause, List<String> conferenceableConnectionIds, Bundle extras) argument
H A DVoicemail.java109 public Builder setPhoneAccount(PhoneAccountHandle phoneAccount) { argument
110 mBuilderPhoneAccount = phoneAccount;
H A DPhoneAccount.java254 * @param phoneAccount The {@link PhoneAccount} used to initialize the builder.
256 public Builder(PhoneAccount phoneAccount) { argument
257 mAccountHandle = phoneAccount.getAccountHandle();
258 mAddress = phoneAccount.getAddress();
259 mSubscriptionAddress = phoneAccount.getSubscriptionAddress();
260 mCapabilities = phoneAccount.getCapabilities();
261 mHighlightColor = phoneAccount.getHighlightColor();
262 mLabel = phoneAccount.getLabel();
263 mShortDescription = phoneAccount.getShortDescription();
264 mSupportedUriSchemes.addAll(phoneAccount
[all...]
H A DConference.java100 * @param phoneAccount The {@code PhoneAccountHandle} associated with the conference.
102 public Conference(PhoneAccountHandle phoneAccount) { argument
103 mPhoneAccount = phoneAccount;
H A DTelecomManager.java1216 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1221 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) { argument
1225 phoneAccount, extras == null ? new Bundle() : extras);
1228 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
1237 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1244 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) { argument
1248 phoneAccount, extras == null ? new Bundle() : extras);
1251 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java5341 public int getSubIdForPhoneAccount(PhoneAccount phoneAccount) { argument
5346 retval = service.getSubIdForPhoneAccount(phoneAccount);

Completed in 3564 milliseconds