/frameworks/base/telecomm/java/com/android/internal/telecom/ |
IInCallAdapter.aidl | 30 void answerCall(String callId, int videoState); 32 void rejectCall(String callId, boolean rejectWithMessage, String textMessage); 34 void disconnectCall(String callId); 36 void holdCall(String callId); 38 void unholdCall(String callId); 44 void playDtmfTone(String callId, char digit); 46 void stopDtmfTone(String callId); 48 void postDialContinue(String callId, boolean proceed); 50 void phoneAccountSelected(String callId, in PhoneAccountHandle accountHandle, 53 void conference(String callId, String otherCallId) [all...] |
IConnectionServiceAdapter.aidl | 40 String callId, 44 void setActive(String callId); 46 void setRinging(String callId); 48 void setDialing(String callId); 50 void setPulling(String callId); 52 void setDisconnected(String callId, in DisconnectCause disconnectCause); 54 void setOnHold(String callId); 56 void setRingbackRequested(String callId, boolean ringing); 58 void setConnectionCapabilities(String callId, int connectionCapabilities); 60 void setConnectionProperties(String callId, int connectionProperties) [all...] |
IConnectionService.aidl | 40 String callId, 45 void abort(String callId); 47 void answerVideo(String callId, int videoState); 49 void answer(String callId); 51 void reject(String callId); 53 void rejectWithMessage(String callId, String message); 55 void disconnect(String callId); 57 void silence(String callId); 59 void hold(String callId); 61 void unhold(String callId); [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
TelecomCallFacade.java | 70 @Rpc(description = "Disconnect call by callId.") 72 @RpcParameter(name = "callId") 73 String callId) { 74 InCallServiceImpl.callDisconnect(callId); 77 @Rpc(description = "Hold call by callId") 79 @RpcParameter(name = "callId") 80 String callId) { 81 InCallServiceImpl.holdCall(callId); 84 @Rpc(description = "Merge call to conference by callId") 86 @RpcParameter(name = "callId") [all...] |
InCallServiceImpl.java | 64 public static void onCallAdded(String callId, Call call) { 69 new CallEvent<Call>(callId, call)); 73 public static void onCallRemoved(String callId, Call call) { 78 new CallEvent<Call>(callId, call)); 118 CallEvent(String callId, EventType event) { 119 mCallId = callId; 134 VideoCallEvent(String callId, EventType event) { 135 super(callId, event); 170 public CallCallback(String callId, int events) { 173 mCallId = callId; [all...] |
/frameworks/base/telecomm/java/android/telecom/ |
RemoteConnectionService.java | 98 public void setActive(String callId) { 99 if (mConnectionById.containsKey(callId)) { 100 findConnectionForAction(callId, "setActive") 103 findConferenceForAction(callId, "setActive") 109 public void setRinging(String callId) { 110 findConnectionForAction(callId, "setRinging") 115 public void setDialing(String callId) { 116 findConnectionForAction(callId, "setDialing") 121 public void setPulling(String callId) { 122 findConnectionForAction(callId, "setPulling" [all...] |
InCallAdapter.java | 52 * @param callId The identifier of the call to answer. 55 public void answerCall(String callId, int videoState) { 57 mAdapter.answerCall(callId, videoState); 65 * @param callId The identifier of the call to reject. 69 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { 71 mAdapter.rejectCall(callId, rejectWithMessage, textMessage); 79 * @param callId The identifier of the call to disconnect. 81 public void disconnectCall(String callId) { 83 mAdapter.disconnectCall(callId); 91 * @param callId The identifier of the call to put on hold [all...] |
ConnectionServiceAdapter.java | 106 * @param callId The unique ID of the call whose state is changing to active. 108 void setActive(String callId) { 111 adapter.setActive(callId); 120 * @param callId The unique ID of the call whose state is changing to ringing. 122 void setRinging(String callId) { 125 adapter.setRinging(callId); 134 * @param callId The unique ID of the call whose state is changing to dialing. 136 void setDialing(String callId) { 139 adapter.setDialing(callId); 149 * @param callId The unique ID of the call whose state is changing to dialing [all...] |
ConnectionService.java | 153 public void abort(String callId) { 154 mHandler.obtainMessage(MSG_ABORT, callId).sendToTarget(); 158 public void answerVideo(String callId, int videoState) { 160 args.arg1 = callId; 166 public void answer(String callId) { 167 mHandler.obtainMessage(MSG_ANSWER, callId).sendToTarget(); 171 public void reject(String callId) { 172 mHandler.obtainMessage(MSG_REJECT, callId).sendToTarget(); 176 public void rejectWithMessage(String callId, String message) { 178 args.arg1 = callId; [all...] |
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
TelecomAdapter.java | 56 private android.telecom.Call getTelecomCallById(String callId) { 57 Call call = CallList.getInstance().getCallById(callId); 61 void answerCall(String callId, int videoState) { 62 android.telecom.Call call = getTelecomCallById(callId); 66 Log.e(this, "error answerCall, call not in call list: " + callId); 70 void rejectCall(String callId, boolean rejectWithMessage, String message) { 71 android.telecom.Call call = getTelecomCallById(callId); 75 Log.e(this, "error rejectCall, call not in call list: " + callId); 79 void disconnectCall(String callId) { 80 android.telecom.Call call = getTelecomCallById(callId); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
CredentialsCache.java | 30 String callId; 34 this.callId = proxyDomain; 40 authorizationHeaders.remove(callId); 55 * @param callid 61 void cacheAuthorizationHeader(String callId, 64 if ( callId == null) throw new NullPointerException("Call ID is null!"); 67 List<AuthorizationHeader> authHeaders = authorizationHeaders.get(callId); 70 authorizationHeaders.put(callId, authHeaders); 83 TimeoutTask timeoutTask = new TimeoutTask( callId,user); 94 * @param callid [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
ConnectionServiceWrapper.java | 68 public void handleCreateConnectionComplete(String callId, ConnectionRequest request, 74 logIncoming("handleCreateConnectionComplete %s", callId); 76 .handleCreateConnectionComplete(callId, request, connection); 85 public void setActive(String callId) { 90 logIncoming("setActive %s", callId); 91 Call call = mCallIdMapper.getCall(callId); 105 public void setRinging(String callId) { 110 logIncoming("setRinging %s", callId); 111 Call call = mCallIdMapper.getCall(callId); 125 public void setVideoProvider(String callId, IVideoProvider videoProvider) [all...] |
InCallAdapter.java | 48 public void answerCall(String callId, int videoState) { 54 Log.d(this, "answerCall(%s,%d)", callId, videoState); 55 Call call = mCallIdMapper.getCall(callId); 59 Log.w(this, "answerCall, unknown call id: %s", callId); 71 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { 77 Log.d(this, "rejectCall(%s,%b,%s)", callId, rejectWithMessage, textMessage); 78 Call call = mCallIdMapper.getCall(callId); 82 Log.w(this, "setRingback, unknown call id: %s", callId); 94 public void playDtmfTone(String callId, char digit) { 100 Log.d(this, "playDtmfTone(%s,%c)", callId, digit) [all...] |
CallIdMapper.java | 93 String callId = getCallId(callToReplace); 94 mCalls.put(callId, newCall); 115 void removeCall(String callId) { 116 mCalls.remove(callId); 127 String callId = null; 129 callId = (String) objId; 132 return mCalls.getValue(callId);
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
References.java | 15 private String callId; 25 return callId; 37 public void setCallId(String callId) { 38 this.callId = callId; 76 return callId ; 78 return callId + ";" + super.parameters.encode();
|
Join.java | 37 public String callId; 47 *@param callId string call identifier (should be localid@host) 50 public Join(String callId) throws IllegalArgumentException { 52 this.callIdentifier = new CallIdentifier(callId); 60 if (callId == null) 63 String retVal = callId; 72 * get the CallId field. This does the same thing as encodeBody 77 return callId; 89 * set the CallId field 96 callId = cid [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultMessageLogFactory.java | 17 String firstLine, String tid, String callId, long tsHeaderValue) { 19 isSender, firstLine, tid, callId, tsHeaderValue); 24 String firstLine, String tid, String callId, long timestampVal) { 26 isSender, firstLine, tid, callId, timestampVal);
|
MessageLog.java | 61 private String callId; 90 String callId, 109 this.callId = callId; 123 String callId, 136 this.callId = callId; 163 + callId
|
/external/nist-sip/java/javax/sip/header/ |
CallIdHeader.java | 9 void setCallId(String callId) throws ParseException;
|
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
JoinParser.java | 12 // Join = "Join" HCOLON callid *(SEMI join-param) 23 * @param callID message to parse 25 public JoinParser(String callID) { 26 super(callID); 39 * @return SIPHeader (CallID object) 50 String callId = lexer.byteStringNoSemicolon(); 53 join.setCallId(callId); 72 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
|
ReplacesParser.java | 12 // Replaces = "Replaces" HCOLON callid *(SEMI replaces-param) 25 * @param callID message to parse 27 public ReplacesParser(String callID) { 28 super(callID); 41 * @return SIPHeader (CallID object) 52 String callId = lexer.byteStringNoSemicolon(); 55 replaces.setCallId(callId); 74 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
InReplyTo.java | 51 protected CallIdentifier callId; 64 callId = cid; 68 * Sets the Call-Id of the InReplyToHeader. The CallId parameter uniquely 71 * @param callId - the string value of the Call-Id of this InReplyToHeader. 73 * unexpectedly while parsing the callId value. 75 public void setCallId(String callId) throws ParseException { 77 this.callId = new CallIdentifier(callId); 84 * Returns the Call-Id of InReplyToHeader. The CallId parameter uniquely 90 if (callId == null [all...] |
CallID.java | 40 public class CallID 56 public CallID() { 93 * get the CallId field. This does the same thing as 110 * set the CallId field 133 *@param callId string call identifier (should be localid@host) 136 public CallID(String callId) throws IllegalArgumentException { 138 this.callIdentifier = new CallIdentifier(callId); 142 CallID retval = (CallID) super.clone() [all...] |
/external/nist-sip/java/javax/sip/message/ |
MessageFactory.java | 16 Request createRequest(URI requestURI, String method, CallIdHeader callId, 21 Request createRequest(URI requestURI, String method, CallIdHeader callId, 26 Request createRequest(URI requestURI, String method, CallIdHeader callId, 32 Response createResponse(int statusCode, CallIdHeader callId, 37 Response createResponse(int statusCode, CallIdHeader callId, 42 Response createResponse(int statusCode, CallIdHeader callId,
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ICallServiceAdapter.aidl | 34 void newIncomingCall(String callId, in CallInfo info); 39 void newOutgoingCall(String callId, in CallInfo info); 45 void setActive(String callId); 50 void setRinging(String callId); 55 void setDialing(String callId); 60 void setDisconnected(String callId);
|