Searched refs:InCallServiceImpl (Results 1 - 4 of 4) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DTelecomCallFacade.java46 InCallServiceImpl.setEventFacade(
52 InCallServiceImpl.setEventFacade(null);
60 return InCallServiceImpl.getCallById(callId);
77 InCallServiceImpl.callDisconnect(callId);
84 InCallServiceImpl.holdCall(callId);
91 InCallServiceImpl.mergeCallsInConference(callId);
98 InCallServiceImpl.splitCallFromConf(callId);
105 InCallServiceImpl.unholdCall(callId);
116 InCallServiceImpl.joinCallsInConf(callIdOne, callIdTwo);
121 return InCallServiceImpl
[all...]
H A DTelecomManagerFacade.java67 InCallServiceImpl.setEventFacade(
73 InCallServiceImpl.setEventFacade(null);
86 int state = InCallServiceImpl.getVideoCallState(videoState);
88 if (state == InCallServiceImpl.STATE_INVALID) {
221 InCallServiceImpl.CallListener.startListeningForEvent(
222 InCallServiceImpl.CallListener.LISTEN_CALL_ADDED);
227 InCallServiceImpl.CallListener.stopListeningForEvent(
228 InCallServiceImpl.CallListener.LISTEN_CALL_ADDED);
233 InCallServiceImpl.CallListener.startListeningForEvent(
234 InCallServiceImpl
[all...]
H A DInCallServiceImpl.java38 public class InCallServiceImpl extends InCallService { class in inherits:InCallService
40 private static InCallServiceImpl sService = null;
42 public static InCallServiceImpl getService() {
140 public static final int STATE_INVALID = InCallServiceImpl.STATE_INVALID;
642 public static String getVideoCallId(InCallServiceImpl.VideoCall videoCall) {
806 InCallServiceImpl svc = getService();
808 Log.d("overrideProximitySensor: InCallServiceImpl is null.");
822 InCallServiceImpl svc = getService();
834 InCallServiceImpl svc = getService();
837 Log.d("serviceSetAudioRoute: InCallServiceImpl i
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
H A DJsonBuilder.java44 import com.googlecode.android_scripting.facade.telephony.InCallServiceImpl;
297 if (data instanceof InCallServiceImpl.CallEvent<?>) {
298 return buildCallEvent((InCallServiceImpl.CallEvent<?>) data);
328 state.put("AudioRoute", InCallServiceImpl.getAudioRouteString(data.getRoute()));
996 private static <T> JSONObject buildCallEvent(InCallServiceImpl.CallEvent<T> callEvent)
1014 build(InCallServiceImpl.getCallPresentationInfoString(
1022 build(InCallServiceImpl.getCallCapabilitiesString(details.getCallCapabilities())));
1025 build(InCallServiceImpl.getCallPropertiesString(details.getCallProperties())));
1036 build(InCallServiceImpl.getVideoCallStateString(details.getVideoState())));
1050 callInfo.put("Parent", build(InCallServiceImpl
[all...]

Completed in 103 milliseconds