Home
last modified time | relevance | path

Searched refs:clientExtras (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallIntentProcessor.java124 Bundle clientExtras = null; in processOutgoingCallIntent() local
128 if (clientExtras == null) { in processOutgoingCallIntent()
129 clientExtras = new Bundle(); in processOutgoingCallIntent()
133 clientExtras.putBoolean(TelecomManager.EXTRA_IS_USER_INTENT_EMERGENCY_CALL, in processOutgoingCallIntent()
141 clientExtras.putString(TelecomManager.EXTRA_CALL_SUBJECT, callsubject); in processOutgoingCallIntent()
151 clientExtras.putParcelable(android.telecom.TelecomManager.EXTRA_LOCATION, in processOutgoingCallIntent()
163 clientExtras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, videoState); in processOutgoingCallIntent()
255 Bundle clientExtras = null; in processIncomingCallIntent() local
259 if (clientExtras == null) { in processIncomingCallIntent()
260 clientExtras = new Bundle(); in processIncomingCallIntent()
[all …]
H A DCallsManager.java1882 public void startConference(List<Uri> participants, Bundle clientExtras, String callingPackage, in startConference() argument
1885 if (clientExtras == null) { in startConference()
1886 clientExtras = new Bundle(); in startConference()
1889 PhoneAccountHandle phoneAccountHandle = clientExtras.getParcelable( in startConference()
1892 clientExtras, initiatingUser, null/* originalIntent */, callingPackage, in startConference()
1895 final boolean speakerphoneOn = clientExtras.getBoolean( in startConference()
1897 final int videoState = clientExtras.getInt( in startConference()
/aosp12/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DSelfManagedCallingActivity.java208 Bundle clientExtras = new Bundle(); in placeOutgoingCall() local
209 clientExtras.putBoolean(SelfManagedConnectionService.EXTRA_HOLDABLE, in placeOutgoingCall()
211 extras.putBundle(TelecomManager.EXTRA_OUTGOING_CALL_EXTRAS, clientExtras); in placeOutgoingCall()