Searched refs:errorObject (Results 1 – 2 of 2) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/ |
D | SipProviderImpl.java | 912 Object errorObject = transactionErrorEvent.getSource(); in transactionErrorEvent() local 916 if (errorObject instanceof SIPServerTransaction) { in transactionErrorEvent() 917 ev = new TimeoutEvent(this, (ServerTransaction) errorObject, in transactionErrorEvent() 920 SIPClientTransaction clientTx = (SIPClientTransaction) errorObject; in transactionErrorEvent() 925 ev = new TimeoutEvent(this, (ClientTransaction) errorObject, in transactionErrorEvent() 929 this.handleEvent(ev, (SIPTransaction) errorObject); in transactionErrorEvent() 932 Object errorObject = transactionErrorEvent.getSource(); in transactionErrorEvent() local 936 if (errorObject instanceof SIPServerTransaction) { in transactionErrorEvent() 937 ev = new TimeoutEvent(this, (ServerTransaction) errorObject, in transactionErrorEvent() 940 SIPClientTransaction clientTx = (SIPClientTransaction) errorObject; in transactionErrorEvent() [all …]
|
/external/webkit/WebCore/bindings/js/ |
D | JSDOMBinding.cpp | 695 JSValue errorObject; in setDOMException() local 698 errorObject = toJS(exec, globalObject, DOMCoreException::create(description)); in setDOMException() 701 errorObject = toJS(exec, globalObject, RangeException::create(description)); in setDOMException() 704 errorObject = toJS(exec, globalObject, EventException::create(description)); in setDOMException() 707 errorObject = toJS(exec, globalObject, XMLHttpRequestException::create(description)); in setDOMException() 711 …errorObject = toJS(exec, globalObject, SVGException::create(description).get(), 0 /* no context on… in setDOMException() 716 errorObject = toJS(exec, globalObject, XPathException::create(description)); in setDOMException() 721 ASSERT(errorObject); in setDOMException() 722 exec->setException(errorObject); in setDOMException()
|