HomeSort by relevance Sort by last modified time
    Searched defs:callId (Results 1 - 24 of 24) sorted by null

  /external/webkit/WebCore/inspector/front-end/
Database.js 84 var callId = WebInspector.Callback.wrap(sortingCallback);
85 InspectorBackend.getDatabaseTableNames(callId, this._id);
ElementsTreeOutline.js     [all...]
ProfileView.js 97 var callId = WebInspector.Callback.wrap(profileCallback);
98 InspectorBackend.getProfile(callId, this.profile.uid);
ProfilesPanel.js 480 var callId = WebInspector.Callback.wrap(populateCallback);
481 InspectorBackend.getProfileHeaders(callId);
DOMAgent.js 343 var callId = WebInspector.Callback.wrap(mycallback);
344 InspectorBackend.getChildNodes(callId, parent.id);
464 var callId = WebInspector.Callback.wrap(mycallback);
465 InspectorBackend.getCookies(callId);
516 var callId = WebInspector.Callback.wrap(callback);
517 InspectorBackend.getEventListenersForNode(callId, node.id);
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
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/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...]
AuthenticationHelperImpl.java 434 String callId = sipRequest.getCallId().getCallId();
438 .getCachedAuthorizationHeaders(callId);
442 "Could not find authentication headers for " + callId);
457 public void removeCachedAuthenticationHeaders(String callId) {
458 if (callId == null)
459 throw new NullPointerException("Null callId argument ");
460 this.cachedCredentials.removeAuthenticationHeader(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...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 61 private String callId;
90 String callId,
109 this.callId = callId;
123 String callId,
136 this.callId = callId;
163 + callId
ServerLog.java 35 import gov.nist.javax.sip.header.CallID;
323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
345 CallID cid = (CallID) message.getCallId();
346 String callId = null;
348 callId = cid.getCallId();
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
370 CallID cid = (CallID) message.getCallId()
    [all...]
SIPTransaction.java 31 import gov.nist.javax.sip.header.CallID;
246 protected CallID callId;
396 this.callId = (CallID) newOriginalRequest.getCallId();
983 // CallID, CSeq number, and top Via
    [all...]
  /external/webkit/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 207 int callId = args.at(0).asInt32();
214 impl()->reportDidDispatchOnInjectedScript(callId, result.get(), isException);
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 205 int callId = args[0]->ToInt32()->Value();
208 host->reportDidDispatchOnInjectedScript(callId, result.get(), isException);
  /frameworks/base/voip/java/android/net/sip/
SipManager.java 371 String callId = getCallId(incomingCallIntent);
372 if (callId == null) {
383 ISipSession session = mSipService.getPendingSession(callId);
403 String callId = getCallId(intent);
405 return ((callId != null) && (offerSd != null));
433 * @param callId the call ID of the incoming call
438 public static Intent createIncomingCallBroadcast(String callId,
441 intent.putExtra(EXTRA_CALL_ID, callId);
504 String callId = getCallId(incomingCallIntent);
505 ISipSession s = mSipService.getPendingSession(callId);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 34 import gov.nist.javax.sip.header.CallID;
258 String callId = Utils.getInstance().generateCallIdentifier(this.getListeningPoint()
260 CallID callid = new CallID(); local
262 callid.setCallId(callId);
265 return callid;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 547 CallID cid = (CallID) this.getCallId();
583 CallID cid = (CallID) this.getCallId();
701 || nextHeader instanceof CallID
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.cpp     [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipService.java 294 public synchronized ISipSession getPendingSession(String callId) {
297 if (callId == null) return null;
298 return mPendingSessions.get(callId);
466 String callId = ringingSession.getCallId();
468 if ((group != ringingGroup) && group.containsSession(callId)) {
501 public boolean containsSession(String callId) {
502 return mSipGroup.containsSession(callId);
    [all...]

Completed in 530 milliseconds