Home
last modified time | relevance | path

Searched refs:MessageChannel (Results 1 – 21 of 21) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/stack/
DStackMessageFactory.java58 MessageChannel msgChan); in newSIPServerRequest()
69 MessageChannel msgChan); in newSIPServerResponse()
DServerResponseInterface.java61 MessageChannel incomingChannel, in processResponse()
74 MessageChannel incomingChannel); in processResponse()
DTCPMessageProcessor.java214 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
216 String key = MessageChannel.getKey(targetHostPort, "TCP"); in createMessageChannel()
246 public synchronized MessageChannel createMessageChannel(InetAddress host, int port) in createMessageChannel()
249 String key = MessageChannel.getKey(host, port, "TCP"); in createMessageChannel()
DTLSMessageProcessor.java230 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
232 String key = MessageChannel.getKey(targetHostPort, "TLS"); in createMessageChannel()
262 public synchronized MessageChannel createMessageChannel(InetAddress host, int port) in createMessageChannel()
265 String key = MessageChannel.getKey(host, port, "TLS"); in createMessageChannel()
DUDPMessageProcessor.java309 public MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
315 public MessageChannel createMessageChannel(InetAddress host, int port) in createMessageChannel()
DMessageProcessor.java284 public abstract MessageChannel createMessageChannel(HostPort targetHostPort) in createMessageChannel()
292 public abstract MessageChannel createMessageChannel(InetAddress targetHost, in createMessageChannel()
DServerRequestInterface.java59 MessageChannel incomingChannel); in processRequest()
DSIPTransaction.java75 public abstract class SIPTransaction extends MessageChannel implements
190 private transient MessageChannel encapsulatedChannel;
329 MessageChannel newEncapsulatedChannel) { in SIPTransaction()
475 public MessageChannel getMessageChannel() { in getMessageChannel()
1097 public void setEncapsulatedChannel(MessageChannel messageChannel) { in setEncapsulatedChannel()
DSIPClientTransaction.java286 … protected SIPClientTransaction(SIPTransactionStack newSIPStack, MessageChannel newChannelToUse) { in SIPClientTransaction()
332 public MessageChannel getRequestChannel() { in getRequestChannel()
500 MessageChannel sourceChannel, SIPDialog dialog) { in processResponse()
607 MessageChannel sourceChannel, SIPDialog sipDialog) throws IOException { in nonInviteClientTransaction()
724 MessageChannel sourceChannel, SIPDialog dialog) throws IOException { in inviteClientTransaction()
1358 public void processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) { in processResponse()
DTLSMessageChannel.java72 public final class TLSMessageChannel extends MessageChannel implements SIPMessageListener,
182 this.key = MessageChannel.getKey(peerAddress, peerPort, "TLS"); in TLSMessageChannel()
680 this.key = MessageChannel.getKey(this.peerAddress, this.peerPort, "TLS"); in getKey()
DTCPMessageChannel.java64 public class TCPMessageChannel extends MessageChannel implements SIPMessageListener, Runnable,
168 this.key = MessageChannel.getKey(peerAddress, peerPort, "TCP"); in TCPMessageChannel()
701 this.key = MessageChannel.getKey(this.peerAddress, this.peerPort, "TCP"); in getKey()
DSIPTransactionStack.java1143 MessageChannel requestMessageChannel) { in newSIPServerRequest()
1248 MessageChannel responseMessageChannel) { in newSIPServerResponse()
1342 public MessageChannel createMessageChannel(SIPRequest request, MessageProcessor mp, in createMessageChannel()
1355 MessageChannel mc = mp.createMessageChannel(targetHostPort); in createMessageChannel()
1382 MessageChannel encapsulatedMessageChannel) { in createClientTransaction()
1394 public SIPServerTransaction createServerTransaction(MessageChannel encapsulatedMessageChannel) { in createServerTransaction()
2003 public MessageChannel createRawMessageChannel(String sourceIpAddress, int sourcePort, in createRawMessageChannel()
2009 MessageChannel newChannel; in createRawMessageChannel()
DMessageChannel.java70 public abstract class MessageChannel { class
209 MessageChannel messageChannel = messageProcessor.createMessageChannel( in sendMessage()
DSIPServerTransaction.java480 MessageChannel messageChannel = ((SIPTransactionStack) getSIPStack()) in sendResponse()
500 protected SIPServerTransaction(SIPTransactionStack sipStack, MessageChannel newChannelToUse) { in SIPServerTransaction()
533 public MessageChannel getResponseChannel() { in getResponseChannel()
708 public void processRequest(SIPRequest transactionRequest, MessageChannel sourceChannel) { in processRequest()
DUDPMessageChannel.java95 public class UDPMessageChannel extends MessageChannel implements
637 MessageChannel messageChannel = messageProcessor in sendMessage()
DIOHandler.java161 MessageChannel messageChannel) throws IOException {
DSIPDialog.java986 MessageChannel messageChannel = lp.getMessageProcessor().createMessageChannel( in sendAck()
2110 MessageChannel messageChannel = sipStack.createRawMessageChannel(this in sendRequest()
2114 MessageChannel oldChannel = ((SIPClientTransaction) in sendRequest()
/external/nist-sip/java/gov/nist/javax/sip/
DNistSipMessageFactoryImpl.java65 MessageChannel messageChannel) { in newSIPServerRequest()
101 SIPResponse sipResponse, MessageChannel messageChannel) { in newSIPServerResponse()
DSipProviderImpl.java40 import gov.nist.javax.sip.stack.MessageChannel;
596 MessageChannel mc = (MessageChannel) sipRequest in getNewServerTransaction()
704 MessageChannel messageChannel = null; in sendRequest()
788 MessageChannel messageChannel = sipStack.createRawMessageChannel( in sendResponse()
DListeningPointImpl.java251 MessageChannel messageChannel = this.messageProcessor.createMessageChannel(targetHostPort); in sendHeartbeat()
DDialogFilter.java43 import gov.nist.javax.sip.stack.MessageChannel;
260 public void processRequest(SIPRequest sipRequest, MessageChannel incomingMessageChannel) { in processRequest()
1117 public void processResponse(SIPResponse response, MessageChannel incomingMessageChannel, in processResponse()
1269 public void processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) { in processResponse()