/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...] |
/packages/services/Telephony/common/src/com/android/services/telephony/common/ |
ICallCommandService.aidl | 32 void answerCall(int callId); 42 void disconnectCall(int callId); 47 void separateCall(int callId); 52 void hold(int callId, boolean hold); 98 void postDialCancel(int callId); 100 void postDialWaitContinue(int callId);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TestController.js | 31 WebInspector.evaluateForTestInFrontend = function(callId, script) 40 script = script + "//# sourceURL=evaluateInWebInspector" + callId + ".js"; 46 RuntimeAgent.evaluate("didEvaluateForTestInFrontend(" + callId + ", " + message + ")", "test");
|
HeapSnapshotProxy.js | 194 this._postMessage({callId: this._nextCallId++, disposition: "create", objectId: objectId, methodName: "WebInspector.HeapSnapshotLoader"}); 207 this._postMessage({callId: this._nextCallId++, disposition: "dispose", objectId: objectId}); 212 var callId = this._nextCallId++; 213 this._callbacks[callId] = callback; 214 this._postMessage({callId: callId, disposition: "getter", objectId: objectId, methodName: getterName}); 219 var callId = this._nextCallId++; 232 this._callbacks[callId] = wrapCallback.bind(this); 233 this._postMessage({callId: callId, disposition: "factory", objectId: objectId, methodName: methodName, methodArguments: methodArgume (…) [all...] |
/frameworks/base/telephony/java/android/telephony/ |
CallStateListener.java | 29 * @param callId a unique ideCntifier for a given call that can be used to track state changes 35 public void onCallStateChanged(int callId, int state, String number);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ITelephonyListener.aidl | 26 void onUpdate(int callId, int state, String number);
|
/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...] |
AuthenticationHelper.java | 71 * @param callId -- the call Id for which we want to remove the cached headers. 74 public abstract void removeCachedAuthenticationHeaders(String 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...] |
Replaces.java | 37 public String callId; 47 *@param callId string call identifier (should be localid@host) 50 public Replaces(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...] |
JoinHeader.java | 185 * Sets the Call-Id of the CallIdHeader. The CallId parameter uniquely 191 * @param callId - the string value of the Call-Id of this CallIdHeader. 195 * unexpectedly while parsing the callId value. 199 public void setCallId(String callId) throws ParseException; 205 * Returns the Call-Id of CallIdHeader. The CallId parameter uniquely
|
ReplacesHeader.java | 31 void setCallId(String callId) throws ParseException;
|
ReferencesHeader.java | 30 public void setCallId(String callId) throws ParseException;
|
/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;
|
/packages/apps/InCallUI/src/com/android/incallui/ |
CallCommandClient.java | 49 public void answerCall(int callId) { 50 Log.i(this, "answerCall: " + callId); 56 mCommandService.answerCall(callId); 76 public void disconnectCall(int callId) { 77 Log.i(this, "disconnect Call: " + callId); 83 mCommandService.disconnectCall(callId); 89 public void separateCall(int callId) { 90 Log.i(this, "separate Call: " + callId); 96 mCommandService.separateCall(callId); 115 public void hold(int callId, boolean onOff) [all...] |
ContactInfoCache.java | 76 public ContactCacheEntry getInfo(int callId) { 77 return mInfoMap.get(callId); 118 final int callId = identification.getCallId(); 119 final ContactCacheEntry cacheEntry = mInfoMap.get(callId); 120 Set<ContactInfoCacheCallback> callBacks = mCallBacks.get(callId); 126 callback.onContactInfoComplete(callId, cacheEntry); 142 mCallBacks.put(callId, callBacks); 158 final int callId = identification.getCallId(); 164 final ContactCacheEntry cacheEntry = buildEntry(mContext, callId, 168 mInfoMap.put(callId, cacheEntry) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
LogRecordFactory.java | 26 * @param callId -- the call id 35 String firstLine, String tid, String callId, long timestampVal);
|
/packages/services/Telephony/src/com/android/phone/ |
CallCommandService.java | 60 public void answerCall(int callId) { 62 CallResult result = mCallModeler.getCallWithId(callId); 77 int callId = Call.INVALID_CALL_ID; 80 callId = call.getCallId(); 83 CallResult result = mCallModeler.getCallWithId(callId); 101 public void disconnectCall(int callId) { 103 CallResult result = mCallModeler.getCallWithId(callId); 122 public void separateCall(int callId) { 124 CallResult result = mCallModeler.getCallWithId(callId); 139 public void hold(int callId, boolean hold) [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,
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
MessageFactoryImpl.java | 101 * @param callId - 102 * the new CallIdHeader object of the callId value of this 122 String method, CallIdHeader callId, CSeqHeader cSeq, 126 if (requestURI == null || method == null || callId == null 135 sipRequest.setCallId(callId); 158 * @param callId - 159 * the new CallIdHeader object of the callId value of this 179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, 182 if (requestURI == null || method == null || callId == null 193 sipRequest.setCallId(callId); [all...] |
/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()
|