Home | History | Annotate | Download | only in impl

Lines Matching defs:extras

100       @NonNull Bundle extras) {
103 Assert.isNotNull(extras);
105 Assert.isNotNull(extras);
109 extras = new Bundle(extras);
110 extras.putAll(createSimulatorConnectionExtras(callType));
113 outgoingCallExtras.putBundle(TelecomManager.EXTRA_OUTGOING_CALL_EXTRAS, extras);
130 return extras.getString(EXTRA_CONNECTION_TAG);
144 @NonNull Bundle extras) {
148 Assert.isNotNull(extras);
152 extras = new Bundle(extras);
153 extras.putString(TelephonyManager.EXTRA_INCOMING_NUMBER, callerId);
154 extras.putAll(createSimulatorConnectionExtras(callType));
161 extras);
162 return extras.getString(EXTRA_CONNECTION_TAG);
246 Bundle extras = new Bundle();
247 extras.putBoolean(EXTRA_IS_SIMULATOR_CONNECTION, true);
249 extras.putString(EXTRA_CONNECTION_TAG, connectionTag);
250 extras.putBoolean(connectionTag, true);
251 extras.putInt(EXTRA_CONNECTION_CALL_TYPE, callType);
253 extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_RTT, true);
255 return extras;