Lines Matching defs:call

32  * Represents an ongoing phone call that the in-call app should present to the user.
78 * Common transitions are to {@link #STATE_DIALING} state for a successful call or
84 * The state of a {@code Call} when the user has initiated a disconnection of the call, but the
85 * call has not yet been disconnected by the underlying {@code ConnectionService}. The next
86 * state of the call is (potentially) {@link #STATE_DISCONNECTED}.
93 * select phone accounts to (for example) place a call.
109 * add a {@link Conference} call before the child {@link Connection}s are merged. This is how
111 * capability allows a merge button to be shown while the conference call is in the foreground
112 * of the in-call UI.
138 * Call supports conference call management. This capability only applies to {@link Conference}
178 * Whether the call is a generic conference, where we do not know the precise state of
186 * Speed up audio setup for MT call.
345 * periodically, but user interfaces should not rely on this to display any "call time
375 * @return A bundle extras to pass with the call
457 * @param call The {@code Call} invoking this method.
460 public void onStateChanged(Call call, int state) {}
465 * @param call The {@code Call} invoking this method.
468 public void onParentChanged(Call call, Call parent) {}
473 * @param call The {@code Call} invoking this method.
476 public void onChildrenChanged(Call call, List<Call> children) {}
481 * @param call The {@code Call} invoking this method.
484 public void onDetailsChanged(Call call, Details details) {}
491 * @param call The {@code Call} invoking this method.
494 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {}
502 * @param call The {@code Call} invoking this method.
505 public void onPostDialWait(Call call, String remainingPostDialSequence) {}
510 * @param call The {@code Call} invoking this method.
514 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) {}
523 * @param call The {@code Call} being destroyed.
525 public void onCallDestroyed(Call call) {}
531 * @param call The {@code Call} being updated.
535 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {}
569 * @param videoState The video state in which to answer the call.
600 * Instructs this {@link #STATE_HOLDING} call to release from hold.
609 * Any other currently playing DTMF tone in the specified call is immediately stopped.
640 * {@link Listener#onPostDialWait(Call, String)}. At this point, the in-call app
642 * the postdial sequence. When the user decides to continue the postdial sequence, the in-call
653 * an outgoing call. Optionally sets this account as the default account.
663 * @param callToConferenceWith The other call with which to conference.
672 * Instructs this {@code Call} to split from any conference call with which it may be
718 Call call = mPhone.internalGetCallByTelecomId(id);
719 if (call == null) {
723 mChildren.add(call);
772 * Obtains an object containing call details.