Lines Matching refs:call

34         public ParcelableCall toParcelableCall(Call call, boolean includeVideoProvider,
37 call, includeVideoProvider, phoneAccountRegistrar, false);
44 * @param call The {@link Call} to parcel.
50 * @param supportsExternalCalls Indicates whether the call should be parcelled for an
54 Call call,
58 return toParcelableCall(call, includeVideoProvider, phoneAccountRegistrar,
65 * @param call The {@link Call} to parcel.
71 * @param supportsExternalCalls Indicates whether the call should be parcelled for an
74 * override to whatever is defined in the call.
75 * @return The {@link ParcelableCall} containing all call information from the {@link Call}.
78 Call call,
85 state = getParcelableState(call, supportsExternalCalls);
89 int capabilities = convertConnectionToCallCapabilities(call.getConnectionCapabilities());
90 int properties = convertConnectionToCallProperties(call.getConnectionProperties());
91 int supportedAudioRoutes = call.getSupportedAudioRoutes();
93 if (call.isConference()) {
97 if (call.isWorkCall()) {
103 phoneAccountRegistrar.isUserSelectedSmsPhoneAccount(call.getTargetPhoneAccount());
104 if (call.isRespondViaSmsCapable() && isDefaultSmsAccount) {
108 if (call.isEmergencyCall()) {
121 Call parentCall = call.getParentCall();
126 long connectTimeMillis = call.getConnectTimeMillis();
127 List<Call> childCalls = call.getChildCalls();
144 Uri handle = call.getHandlePresentation() == TelecomManager.PRESENTATION_ALLOWED ?
145 call.getHandle() : null;
146 String callerDisplayName = call.getCallerDisplayNamePresentation() ==
147 TelecomManager.PRESENTATION_ALLOWED ? call.getCallerDisplayName() : null;
149 List<Call> conferenceableCalls = call.getConferenceableCalls();
156 call.getId(),
158 call.getDisconnectCause(),
159 call.getCannedSmsResponses(),
165 call.getHandlePresentation(),
167 call.getCallerDisplayNamePresentation(),
168 call.getGatewayInfo(),
169 call.getTargetPhoneAccount(),
171 includeVideoProvider ? call.getVideoProvider() : null,
174 call.getStatusHints(),
175 call.getVideoState(),
177 call.getIntentExtras(),
178 call.getExtras());
181 private static int getParcelableState(Call call, boolean supportsExternalCalls) {
183 switch (call.getState()) {
204 // STATE_PULLING_CALL to STATE_DIALING. In essence, pulling a call can be seen
229 if (call.isLocallyDisconnecting() &&