Searched refs:callID (Results 1 - 12 of 12) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DCallIDParser.java43 * @param callID message to parse
45 public CallIDParser(String callID) { argument
46 super(callID);
71 CallID callID = new CallID();
75 callID.setCallId(rest.trim());
76 return callID;
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleInspector.cpp53 void WKBundleInspectorEvaluateScriptForTest(WKBundleInspectorRef inspectorRef, long callID, WKStringRef script) argument
55 return toImpl(inspectorRef)->evaluateScriptForTest(callID, toImpl(script)->string());
H A DWKBundleInspector.h46 WK_EXPORT void WKBundleInspectorEvaluateScriptForTest(WKBundleInspectorRef inspector, long callID, WKStringRef script);
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DJoinParser.java23 * @param callID message to parse
25 public JoinParser(String callID) { argument
26 super(callID);
H A DReplacesParser.java25 * @param callID message to parse
27 public ReplacesParser(String callID) { argument
28 super(callID);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebInspector.h57 void evaluateScriptForTest(long callID, const String& script);
H A DWebInspector.cpp105 void WebInspector::evaluateScriptForTest(long callID, const String& script) argument
107 m_page->corePage()->inspectorController()->evaluateForTestInFrontend(callID, script);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DDRTDevToolsAgent.cpp139 bool DRTDevToolsAgent::evaluateInWebInspector(long callID, const std::string& script) argument
144 agent->evaluateInWebInspector(callID, WebString::fromUTF8(script));
H A DDRTDevToolsAgent.h72 bool evaluateInWebInspector(long callID, const std::string& script);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DLayoutTestController.idl101 void evaluateInWebInspector(in long callID, in DOMString script);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DLayoutTestController.cpp399 void LayoutTestController::evaluateInWebInspector(long callID, JSStringRef script) argument
402 WKBundleInspectorEvaluateScriptForTest(WKBundlePageGetInspector(InjectedBundle::shared().page()->page()), callID, scriptWK.get());
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java2145 // Iterate through the dialogDialog, get the callID of each dialog and
2157 String callID = (callIdHeader != null ? callIdHeader.getCallId() : null);
2160 if (itDialog != null && callID != null && !activeCallIDs.contains(callID)) {

Completed in 185 milliseconds