HomeSort by relevance Sort by last modified time
    Searched refs:callId (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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/webkit/WebKit/mac/WebInspector/
WebInspectorPrivate.h 34 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
  /external/webkit/WebCore/inspector/
InspectorBackend.h 71 void getResourceContent(long callId, unsigned long identifier);
105 void getProfileHeaders(long callId);
106 void getProfile(long callId, unsigned uid);
110 void dispatchOnInjectedScript(long callId, long injectedScriptId, const String& methodName, const String& arguments, bool async);
111 void getChildNodes(long callId, long nodeId);
112 void setAttribute(long callId, long elementId, const String& name, const String& value);
113 void removeAttribute(long callId, long elementId, const String& name);
114 void setTextNodeValue(long callId, long nodeId, const String& value);
115 void getEventListenersForNode(long callId, long nodeId);
117 void removeNode(long callId, long nodeId)
    [all...]
InspectorBackend.idl 45 void getResourceContent(in long callId, in unsigned long identifier);
77 void getProfileHeaders(in long callId);
78 void getProfile(in long callId, in unsigned long uid);
81 void dispatchOnInjectedScript(in long callId, in long injectedScriptId, in DOMString methodName, in DOMString arguments, in boolean async);
83 void getChildNodes(in long callId, in long nodeId);
84 void setAttribute(in long callId, in long elementId, in DOMString name, in DOMString value);
85 void removeAttribute(in long callId, in long elementId, in DOMString name);
86 void setTextNodeValue(in long callId, in long nodeId, in DOMString value);
87 void getEventListenersForNode(in long callId, in long nodeId);
89 void removeNode(in long callId, in long nodeId)
    [all...]
InspectorFrontend.h 76 void didGetResourceContent(int callId, const String& content);
101 void didGetProfileHeaders(int callId, const ScriptArray& headers);
102 void didGetProfile(int callId, const ScriptValue& profile);
108 void didGetDatabaseTableNames(int callId, const ScriptArray& tableNames);
114 void didGetDOMStorageEntries(int callId, const ScriptArray& entries);
115 void didSetDOMStorageItem(int callId, bool success);
116 void didRemoveDOMStorageItem(int callId, bool success);
127 void didGetChildNodes(int callId);
128 void didApplyDomChange(int callId, bool success);
129 void didGetEventListenersForNode(int callId, int nodeId, ScriptArray& listenersArray)
    [all...]
InspectorBackend.cpp 126 void InspectorBackend::getResourceContent(long callId, unsigned long identifier)
134 frontend->didGetResourceContent(callId, resource->sourceString());
136 frontend->didGetResourceContent(callId, "");
263 void InspectorBackend::getProfileHeaders(long callId)
266 m_inspectorController->getProfileHeaders(callId);
269 void InspectorBackend::getProfile(long callId, unsigned uid)
272 m_inspectorController->getProfile(callId, uid);
282 void InspectorBackend::dispatchOnInjectedScript(long callId, long injectedScriptId, const String& methodName, const String& arguments, bool async)
302 injectedScript.dispatch(callId, methodName, arguments, async, &result, &hadException);
305 frontend->didDispatchOnInjectedScript(callId, result.get(), hadException)
    [all...]
InspectorDOMAgent.h 91 void getChildNodes(long callId, long nodeId);
92 void setAttribute(long callId, long elementId, const String& name, const String& value);
93 void removeAttribute(long callId, long elementId, const String& name);
94 void setTextNodeValue(long callId, long nodeId, const String& value);
95 void getEventListenersForNode(long callId, long nodeId);
InspectorFrontend.cpp 156 void InspectorFrontend::didGetResourceContent(int callId, const String& content)
160 function.appendArgument(callId);
334 void InspectorFrontend::didGetProfileHeaders(int callId, const ScriptArray& headers)
338 function.appendArgument(callId);
343 void InspectorFrontend::didGetProfile(int callId, const ScriptValue& profile)
347 function.appendArgument(callId);
415 void InspectorFrontend::didRemoveNode(int callId, int nodeId)
419 function.appendArgument(callId);
424 void InspectorFrontend::didGetChildNodes(int callId)
428 function.appendArgument(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...]
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;
  /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/webkit/WebCore/inspector/front-end/
TestController.js 31 WebInspector.TestController = function(callId)
33 this._callId = callId;
59 WebInspector.evaluateForTestInFrontend = function(callId, script)
61 var controller = new WebInspector.TestController(callId);
DOMStorage.js 59 var callId = WebInspector.Callback.wrap(callback);
60 InspectorBackend.getDOMStorageEntries(callId, this._id);
65 var callId = WebInspector.Callback.wrap(callback);
66 InspectorBackend.setDOMStorageItem(callId, this._id, key, value);
71 var callId = WebInspector.Callback.wrap(callback);
72 InspectorBackend.removeDOMStorageItem(callId, this._id, key);
InspectorBackendStub.js 92 getResourceContent: function(callId, identifier)
94 WebInspector.didGetResourceContent(callId, "");
213 getProfileHeaders: function(callId)
215 WebInspector.didGetProfileHeaders(callId, []);
218 getProfile: function(callId, uid)
222 WebInspector.didGetProfile(callId, WebInspector.__fullProfiles[uid]);
  /external/webkit/WebKit/win/Interfaces/
IWebInspectorPrivate.idl 42 HRESULT evaluateInFrontend([in] ULONG callId, [in] BSTR script);
  /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);
  /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...]

Completed in 431 milliseconds

1 2 3 4