Lines Matching refs:Call

51 public final class Call {  class
1210 public void onStateChanged(Call call, int state) {} in onStateChanged()
1218 public void onParentChanged(Call call, Call parent) {} in onParentChanged()
1226 public void onChildrenChanged(Call call, List<Call> children) {} in onChildrenChanged()
1234 public void onDetailsChanged(Call call, Details details) {} in onDetailsChanged()
1244 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {} in onCannedTextResponsesLoaded()
1255 public void onPostDialWait(Call call, String remainingPostDialSequence) {} in onPostDialWait()
1263 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) {} in onVideoCallChanged()
1274 public void onCallDestroyed(Call call) {} in onCallDestroyed()
1284 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {} in onConferenceableCallsChanged()
1303 public void onConnectionEvent(Call call, String event, Bundle extras) {} in onConnectionEvent()
1312 public void onRttModeChanged(Call call, int mode) {} in onRttModeChanged()
1321 public void onRttStatusChanged(Call call, boolean enabled, RttCall rttCall) {} in onRttStatusChanged()
1330 public void onRttRequest(Call call, int id) {} in onRttRequest()
1340 public void onRttInitiationFailure(Call call, int reason) {} in onRttInitiationFailure()
1351 public void onHandoverComplete(Call call) {} in onHandoverComplete()
1363 public void onHandoverFailed(Call call, @HandoverFailureErrors int failureReason) {} in onHandoverFailed()
1525 private final List<Call> mChildren = new ArrayList<>();
1526 private final List<Call> mUnmodifiableChildren = Collections.unmodifiableList(mChildren);
1528 private final List<Call> mConferenceableCalls = new ArrayList<>();
1529 private final List<Call> mUnmodifiableConferenceableCalls =
1612 public void transfer(@NonNull android.telecom.Call toCall) { in transfer()
1745 public void conference(Call callToConferenceWith) { in conference()
2035 public Call getParent() { in getParent()
2048 public List<Call> getChildren() { in getChildren()
2054 Call call = mPhone.internalGetCallByTelecomId(id); in getChildren()
2072 public List<Call> getConferenceableCalls() { in getConferenceableCalls()
2103 public @Nullable Call getGenericConferenceActiveChildCall() { in getGenericConferenceActiveChildCall()
2239 Log.w(Call.class, "Unknown state %d", state); in stateToString()
2271 Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter, String callingPackage, in Call() method in Call
2282 Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter, int state, in Call() method in Call
2298 final void internalUpdate(ParcelableCall parcelableCall, Map<String, Call> callIdMap) { in internalUpdate()
2336 if (mTargetSdkVersion < Phone.SDK_VERSION_R && state == Call.STATE_SIMULATED_RINGING) { in internalUpdate()
2337 state = Call.STATE_RINGING; in internalUpdate()
2366 List<Call> conferenceableCalls = new ArrayList<Call>(conferenceableCallIds.size()); in internalUpdate()
2392 RttCall newRttCall = new Call.RttCall(mTelecomCallId, in internalUpdate()
2451 if (mState != Call.STATE_DISCONNECTED) { in internalSetDisconnected()
2452 mState = Call.STATE_DISCONNECTED; in internalSetDisconnected()
2466 final Call call = this; in internalOnRttUpgradeRequest()
2475 final Call call = this; in internalOnRttInitiationFailure()
2484 final Call call = this; in internalOnHandoverFailed()
2493 final Call call = this; in internalOnHandoverComplete()
2501 final Call call = this; in fireStateChanged()
2512 private void fireParentChanged(final Call newParent) { in fireParentChanged()
2514 final Call call = this; in fireParentChanged()
2525 private void fireChildrenChanged(final List<Call> children) { in fireChildrenChanged()
2527 final Call call = this; in fireChildrenChanged()
2540 final Call call = this; in fireDetailsChanged()
2553 final Call call = this; in fireCannedTextResponsesLoaded()
2566 final Call call = this; in fireVideoCallChanged()
2579 final Call call = this; in firePostDialWait()
2598 final Call call = this; in fireCallDestroyed()
2615 synchronized(Call.this) { in fireCallDestroyed()
2634 final Call call = this; in fireConferenceableCallsChanged()
2655 final Call call = this; in fireOnConnectionEvent()
2673 final Call call = this; in fireOnIsRttChanged()
2686 final Call call = this; in fireOnRttModeChanged()