HomeSort by relevance Sort by last modified time
    Searched refs:via (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /external/iproute2/ip/
routel 22 via=""
28 broadcast|local|unreachable) via=$network
40 echo "$network $via $src $proto $scope $dev $table"
52 via=$2;
58 printf(format,network,mask,via,src,proto,scope,dev,table);
  /external/nist-sip/java/javax/sip/message/
MessageFactory.java 17 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
22 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
27 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
33 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
38 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
43 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
  /external/chromium_org/content/test/data/workers/
messageport_worker.js 9 anotherport.postMessage("Worker got a message via the passed port.");
  /external/openssl/android.testssl/
testssl 76 echo test sslv2 via BIO pair
79 echo test sslv2 with server authentication via BIO pair
83 echo test sslv2 with client authentication via BIO pair
86 echo test sslv2 with both client and server authentication via BIO pair
90 echo test sslv3 via BIO pair
93 echo test sslv3 with server authentication via BIO pair
96 echo test sslv3 with client authentication via BIO pair
99 echo test sslv3 with both client and server authentication via BIO pair
102 echo test sslv2/sslv3 via BIO pair
106 echo 'test sslv2/sslv3 w/o (EC)DHE via BIO pair
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 32 import gov.nist.javax.sip.header.Via;
63 * My Sent by string ( which I use to set the outgoing via header)
159 * Get the Via header to assign for this message processor. The topmost via
162 * @return the ViaHeader to be used by the messages sent via this message processor.
164 public Via getViaHeader() {
166 Via via = new Via(); local
168 via.setSentBy(sentByHostPort)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 110 * @param via -
123 FromHeader from, ToHeader to, List via,
127 || cSeq == null || from == null || to == null || via == null
139 sipRequest.setVia(via);
167 * @param via -
180 List via, MaxForwardsHeader maxForwards, byte[] content,
183 || cSeq == null || from == null || to == null || via == null
197 sipRequest.setVia(via);
225 * @param via -
233 List via, MaxForwardsHeader maxForwards) throws ParseException
    [all...]
  /external/llvm/test/MC/ARM/
relocated-mapping.s 4 @ go via MCStreamer::EmitBytes; make sure they still emit a mapping symbol.
  /bionic/libc/arch-x86_64/bionic/
syscall.S 44 # All arguments are passed via registers.
  /external/llvm/test/MC/MachO/ARM/
no-subsections-reloc.s 5 @ When not using subsections-via-symbols, references to non-local symbols
  /external/llvm/test/MC/Mips/
nooddspreg-error.s 14 # command line options and any inconsistencies reported via a warning.
mips_abi_flags_xx.s 37 # command line options and any inconsistencies reported via a warning.
mips_abi_flags_xx_set.s 38 # command line options and any inconsistencies reported via a warning.
  /external/iproute2/doc/
ip-tunnels.tex 50 to tunnel net 10.0.0.0 via router 193.233.7.65. It does not
53 to 10.0.0.0 via \verb|tunl0| in routing table.
60 ip route add 10.0.0.0/8 via 193.233.7.65 dev tunl0 onlink
123 via this tunnel,
124 rather than via Internet. Actual tunnel endpoint address \verb|A|
133 kinds and gateway is required to be directly reachable via this tunnel,
134 rather than via Internet. You still may use \verb|ip route add ... onlink|
211 NBMA tunnels are different. To route something via NBMA tunnel
216 ip route add 10.0.0.0/24 via <A> dev tunl0 onlink
219 kernel will refuse request to create route via gateway not directl
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
cryptotokenbackground.js 29 // Listen to individual messages sent from (whitelisted) webpages via
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
example.js 16 // forward messages to the NaCl module via postMessage()
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 32 * provide isolation from the name mangling specified via --with-mangling
  /external/llvm/test/MC/Mips/mips32/
abiflags.s 37 # command line options and any inconsistencies reported via a warning.
  /external/llvm/test/MC/Mips/mips32r2/
abiflags.s 38 # command line options and any inconsistencies reported via a warning.
  /external/llvm/test/MC/Mips/mips64/
abiflags.s 37 # command line options and any inconsistencies reported via a warning.
  /external/llvm/test/MC/Mips/mips64r2/
abiflags.s 37 # command line options and any inconsistencies reported via a warning.
  /external/llvm/test/MC/Mips/msa/
abiflags.s 38 # command line options and any inconsistencies reported via a warning.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 33 * Parser for via headers.
43 public ViaParser(String via) {
44 super(via);
52 * a parser for the essential part of the via header.
54 private void parseVia(Via v) throws ParseException {
98 if (name.equals(Via.BRANCH)) {
109 // JvB Note: RFC3261 does not allow a comment in Via headers anymore
163 if (name.getTokenValue().compareToIgnoreCase(Via.RECEIVED) == 0) {
202 // The first via header.
203 this.lexer.match(TokenTypes.VIA);
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 24 A source of tokens must provide a sequence of tokens via nextToken()
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2326.js 50 // This function should be optimized via OSR in the first tight loop.
53 // This function should be optimized via OSR in the second tight loop.
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 35 import gov.nist.javax.sip.header.Via;
288 // Be kind and assign a via header for this provider if the user is
293 Via via = lp.getViaHeader(); local
294 request.setHeader(via);
304 * User decided to give us his own via header branch. Lets see if it
387 Via topmostVia = sipRequest.getTopmostVia();
686 // Check if we have a valid via.
689 throw new SipException("Invalid SipRequest -- no via header!");
693 * JvB: Via branch should already be OK, dont touch it here? Som
698 Via via = sipRequest.getTopmostVia(); local
744 Via via = sipResponse.getTopmostVia(); local
    [all...]

Completed in 1373 milliseconds

1 2 3 4 5 6 7 8 9