HomeSort by relevance Sort by last modified time
    Searched refs:sourcePort (Results 1 - 6 of 6) sorted by null

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FilterGraph.java 144 * @param sourcePort The name of the source port.
148 public void connect(String sourceFilterName, String sourcePort,
157 connect(sourceFilter, sourcePort, targetFilter, targetPort);
165 * @param sourcePort The name of the source port.
169 public void connect(Filter sourceFilter, String sourcePort,
171 sourceFilter.connect(sourcePort, targetFilter, targetPort);
289 String sourcePort,
292 String branchName = "__" + sourceFilter.getName() + "_" + sourcePort + "Branch";
297 sourceFilter.connect(sourcePort, branch, "input");
GraphReader.java 207 String sourcePort,
211 mSourcePort = sourcePort;
305 "'sourceFilter=\"filter\" sourcePort=\"port\"'.");
309 sourcePortName = attributes.getValue("sourcePort");
344 assertValueNotNull("sourcePort", sourcePortName);
  /external/tcpdump/
print-sctp.c 72 u_short sourcePort, destPort;
102 sourcePort = EXTRACT_16BITS(&sctpPktHdr->source);
109 sourcePort,
117 sourcePort,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 280 // Only the first segment contains sourcePort and destination Port
281 int sourcePort = 0;
285 sourcePort = (0xFF & pdu[index++]) << 8;
286 sourcePort |= 0xFF & pdu[index++];
300 + ", src-port = " + sourcePort + ", dst-port = " + destinationPort
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 131 String sourcePort,
135 mSourcePort = sourcePort;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionStack.java     [all...]

Completed in 2015 milliseconds