Lines Matching refs:extras
70 public Builder setExtras(Bundle extras) { in setExtras() argument
71 this.mExtras = extras; in setExtras()
157 Bundle extras) { in ConnectionRequest() argument
158 this(accountHandle, handle, extras, VideoProfile.STATE_AUDIO_ONLY, null, false, null, null); in ConnectionRequest()
170 Bundle extras, in ConnectionRequest() argument
172 this(accountHandle, handle, extras, videoState, null, false, null, null); in ConnectionRequest()
190 Bundle extras, in ConnectionRequest() argument
194 this(accountHandle, handle, extras, videoState, telecomCallId, in ConnectionRequest()
201 Bundle extras, in ConnectionRequest() argument
209 mExtras = extras; in ConnectionRequest()
343 private static String bundleToString(Bundle extras){ in bundleToString() argument
344 if (extras == null) { in bundleToString()
349 for (String key : extras.keySet()) { in bundleToString()
355 sb.append(Log.pii(extras.get(key))); in bundleToString()
358 sb.append(extras.get(key)); in bundleToString()