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
336 * periodically, but user interfaces should not rely on this to display any "call time
366 * @return A bundle extras to pass with the call
448 * @param call The {@code Call} invoking this method.
451 public void onStateChanged(Call call, int state) {}
456 * @param call The {@code Call} invoking this method.
459 public void onParentChanged(Call call, Call parent) {}
464 * @param call The {@code Call} invoking this method.
467 public void onChildrenChanged(Call call, List<Call> children) {}
472 * @param call The {@code Call} invoking this method.
475 public void onDetailsChanged(Call call, Details details) {}
482 * @param call The {@code Call} invoking this method.
485 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {}
493 * @param call The {@code Call} invoking this method.
496 public void onPostDialWait(Call call, String remainingPostDialSequence) {}
501 * @param call The {@code Call} invoking this method.
505 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) {}
514 * @param call The {@code Call} being destroyed.
516 public void onCallDestroyed(Call call) {}
522 * @param call The {@code Call} being updated.
526 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {}
560 * @param videoState The video state in which to answer the call.
591 * Instructs this {@link #STATE_HOLDING} call to release from hold.
600 * Any other currently playing DTMF tone in the specified call is immediately stopped.
631 * {@link Listener#onPostDialWait(Call, String)}. At this point, the in-call app
633 * the postdial sequence. When the user decides to continue the postdial sequence, the in-call
644 * an outgoing call. Optionally sets this account as the default account.
654 * @param callToConferenceWith The other call with which to conference.
663 * Instructs this {@code Call} to split from any conference call with which it may be
709 Call call = mPhone.internalGetCallByTelecomId(id);
710 if (call == null) {
714 mChildren.add(call);
763 * Obtains an object containing call details.