Lines Matching refs:extras

122      * extras. Used to pass the phone accounts to display on the front end to the user in order to
616 * @return The extras associated with this call.
623 * @return The extras used with the original intent to place this call.
700 Bundle extras,
716 mExtras = extras;
872 * @param extras Extras associated with the connection event.
874 public void onConnectionEvent(Call call, String event, Bundle extras) {}
1236 * ensure the contents of the extras {@link Bundle} is clearly defined. Extra keys for this
1239 * When defining events and the associated extras, it is important to keep their behavior
1241 * events/extras should me maintained to ensure backwards compatibility with older
1245 * @param extras Bundle containing extra information associated with the event.
1247 public void sendCallEvent(String event, Bundle extras) {
1248 mInCallAdapter.sendCallEvent(mTelecomCallId, event, extras);
1280 * Adds some extras to this {@link Call}. Existing keys are replaced and new ones are
1284 * extras. Keys should be fully qualified (e.g., com.example.MY_EXTRA) to avoid conflicts.
1286 * @param extras The extras to add.
1288 public final void putExtras(Bundle extras) {
1289 if (extras == null) {
1296 mExtras.putAll(extras);
1297 mInCallAdapter.putExtras(mTelecomCallId, extras);
1346 * Removes extras from this {@link Call}.
1348 * @param keys The keys of the extras to remove.
1363 * Removes extras from this {@link Call}.
1365 * @param keys The keys of the extras to remove.
1752 final void internalOnConnectionEvent(String event, Bundle extras) {
1753 fireOnConnectionEvent(event, extras);
1926 * @param extras
1928 private void fireOnConnectionEvent(final String event, final Bundle extras) {
1935 callback.onConnectionEvent(call, event, extras);