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

1 23 4

  /external/nist-sip/java/gov/nist/javax/sip/header/
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...]
  /external/webkit/WebKit/chromium/src/
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);
DebuggerAgentImpl.cpp 148 int callId,
177 v8::Number::New(async ? callId : 0));
  /external/webkit/WebCore/inspector/
InspectorController.cpp     [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/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);
  /external/webkit/WebKit/win/
WebInspector.cpp 262 HRESULT STDMETHODCALLTYPE WebInspector::evaluateInFrontend(ULONG callId, BSTR bScript)
272 page->inspectorController()->evaluateForTestInFrontend(callId, script);
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 59 void webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script);
570 void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script)
576 webkit_web_inspector_execute_script(inspector, callId, scriptString);
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 333 void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script)
  /external/webkit/WebKit/gtk/webkit/
webkitwebinspector.cpp 553 void webkit_web_inspector_execute_script(WebKitWebInspector* webInspector, long callId, const gchar* script)
559 priv->page->inspectorController()->evaluateForTestInFrontend(callId, script);
webkitprivate.h 231 webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script);
  /external/webkit/WebCore/inspector/front-end/
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);
InjectedScript.js 81 InjectedScript.dispatch = function(methodName, args, callId)
84 if (callId)
85 argsArray.splice(0, 0, callId); // Methods that run asynchronously have a call back id parameter.
    [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);
ElementsTreeOutline.js     [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...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 576 void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script)
580 [[[mainFrame webView] inspector] evaluateInFrontend:nil callId:callId script:scriptNS];
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.h 231 void evaluateInWebInspector(long callId, JSStringRef script);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
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/nist-sip/java/gov/nist/javax/sip/message/
SIPMessage.java 37 import gov.nist.javax.sip.header.CallID;
156 protected CallID callIdHeader;
708 } else if (h instanceof CallID) {
709 this.callIdHeader = (CallID) h;
757 } else if (toRemove instanceof CallID) {
796 } else if (removed instanceof CallID) {
    [all...]
SIPRequest.java 547 CallID cid = (CallID) this.getCallId();
583 CallID cid = (CallID) this.getCallId();
701 || nextHeader instanceof 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/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 1024 void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script)
1042 inspectorPrivate->evaluateInFrontend(callId, bstrT(script).GetBSTR());
    [all...]

Completed in 220 milliseconds

1 23 4