HomeSort by relevance Sort by last modified time
    Searched full:callid (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferencesHeader.java 30 public void setCallId(String callId) throws ParseException;
ReplacesHeader.java 31 void setCallId(String callId) throws ParseException;
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
  /external/webkit/WebKit/mac/WebInspector/
WebInspectorPrivate.h 34 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
WebInspector.mm 188 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script
191 page->inspectorController()->evaluateForTestInFrontend(callId, script);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
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...]
  /external/webkit/WebCore/inspector/
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);
InjectedScript.cpp 47 void InjectedScript::dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException)
54 function.appendArgument(callId);
InspectorController.h 196 void getCookies(long callId);
204 void getDOMStorageEntries(int callId, int storageId);
205 void setDOMStorageItem(long callId, long storageId, const String& key, const String& value);
206 void removeDOMStorageItem(long callId, long storageId, const String& key);
252 void evaluateForTestInFrontend(long callId, const String& script);
279 void getProfileHeaders(long callId);
280 void getProfile(long callId, unsigned uid);
311 void didEvaluateForTestInFrontend(long callId, const String& jsonResult);
InspectorDOMAgent.cpp 266 void InspectorDOMAgent::getChildNodes(long callId, long nodeId)
269 m_frontend->didGetChildNodes(callId);
314 void InspectorDOMAgent::setAttribute(long callId, long elementId, const String& name, const String& value)
321 m_frontend->didApplyDomChange(callId, ec == 0);
323 m_frontend->didApplyDomChange(callId, false);
327 void InspectorDOMAgent::removeAttribute(long callId, long elementId, const String& name)
334 m_frontend->didApplyDomChange(callId, ec == 0);
336 m_frontend->didApplyDomChange(callId, false);
340 void InspectorDOMAgent::setTextNodeValue(long callId, long nodeId, const String& value)
347 m_frontend->didApplyDomChange(callId, ec == 0)
    [all...]
InjectedScript.h 51 void dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException);
InspectorController.cpp     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 71 * @param callId -- the call Id for which we want to remove the cached headers.
74 public abstract void removeCachedAuthenticationHeaders(String callId);
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/webkit/WebCore/inspector/front-end/
Database.js 84 var callId = WebInspector.Callback.wrap(sortingCallback);
85 InspectorBackend.getDatabaseTableNames(callId, this._id);
InjectedScriptAccess.js 63 var callId = WebInspector.Callback.wrap(myCallback);
65 InspectorBackend.dispatchOnInjectedScript(callId, this._injectedScriptId, methodName, argsString, !!async);
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 32 * The call identifer that goes into a callID header and a in-reply-to header.
36 * @see CallID
155 /** set the callId field
171 throw new IllegalArgumentException("CallID must be token@token or token");
HeaderFactoryImpl.java 260 * Creates a new CallIdHeader based on the newly supplied callId value.
262 * @param callId - the new string value of the call-id.
264 * unexpectedly while parsing the callId value.
267 public CallIdHeader createCallIdHeader(String callId)
269 if (callId == null)
270 throw new NullPointerException("null arg callId");
271 CallID c = new CallID();
272 c.setCallId(callId);
523 * Creates a new InReplyToHeader based on the newly supplied callId
    [all...]
HeaderFactoryExt.java 70 * @param callId -
78 public ReplacesHeader createReplacesHeader(String callId, String toTag,
226 * @param callId -
234 public JoinHeader createJoinHeader(String callId, String toTag,
  /frameworks/base/voip/java/android/net/sip/
ISipService.aidl 40 ISipSession getPendingSession(String callId);
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/javax/sip/header/
HeaderFactory.java 35 CallIdHeader createCallIdHeader(String callId) throws ParseException;
87 InReplyToHeader createInReplyToHeader(String callId) throws ParseException;
  /external/webkit/WebKit/win/Interfaces/
IWebInspectorPrivate.idl 42 HRESULT evaluateInFrontend([in] ULONG callId, [in] BSTR script);
  /external/webkit/WebKit/chromium/src/
WebDevToolsAgentImpl.h 71 virtual void dispatchOnInspectorController(int callId, const WebCore::String& functionName, const WebCore::String& jsonArgs);
72 virtual void dispatchOnInjectedScript(int callId, int injectedScriptId, const WebCore::String& functionName, const WebCore::String& jsonArgs, bool async);
84 virtual void evaluateInWebInspector(long callId, const WebString& script);
WebDevToolsAgentImpl.cpp 249 void WebDevToolsAgentImpl::dispatchOnInspectorController(int callId, const String& functionName, const String& jsonArgs)
253 result = m_debuggerAgentImpl->executeUtilityFunction(m_utilityContext, callId,
255 m_toolsAgentDelegateStub->didDispatchOn(callId, result, exception);
258 void WebDevToolsAgentImpl::dispatchOnInjectedScript(int callId, int injectedScriptId, const String& functionName, const String& jsonArgs, bool async)
261 callId,
520 void WebDevToolsAgentImpl::evaluateInWebInspector(long callId, const WebString& script)
523 ic->evaluateForTestInFrontend(callId, script);

Completed in 349 milliseconds

12 3 4