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

1 2 3

  /external/valgrind/main/drd/tests/
trylock.stderr.exp 2 Locking rwlock via pthread_rwlock_wrlock().
3 Locking rwlock via pthread_rwlock_trywrlock().
4 Locking rwlock via pthread_rwlock_timedwrlock().
5 Locking rwlock via pthread_rwlock_rdlock().
6 Locking rwlock via pthread_rwlock_tryrdlock().
7 Locking rwlock via pthread_rwlock_timedrdlock().
16 Locking mutex via pthread_mutex_trylock().
17 Locking mutex via pthread_mutex_lock().
18 Locking mutex via pthread_mutex_timedlock().
  /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);
ifcfg 143 ip ro append default via $peer dev $dev metric 30001
  /external/netcat/data/
pmap-dump.d 1 # portmap dump request: like "rpcinfo -p" but via UDP instead
  /external/webkit/Tools/android/flex-2.5.4a/
mkskel.sh 4 /* File created from flex.skl via mkskel.sh */
  /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/openssl/android.testssl/
testssl 85 echo test sslv2 via BIO pair
88 echo test sslv2 with server authentication via BIO pair
92 echo test sslv2 with client authentication via BIO pair
95 echo test sslv2 with both client and server authentication via BIO pair
99 echo test sslv3 via BIO pair
102 echo test sslv3 with server authentication via BIO pair
105 echo test sslv3 with client authentication via BIO pair
108 echo test sslv3 with both client and server authentication via BIO pair
111 echo test sslv2/sslv3 via BIO pair
115 echo test sslv2/sslv3 w/o DHE via BIO pai
    [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...]
DefaultRouter.java 295 ViaHeader via = (ViaHeader) request.getHeader(ViaHeader.NAME); local
296 transport = via.getTransport();
SIPServerTransaction.java 36 import gov.nist.javax.sip.header.Via;
408 // The server transport uses the value of the top Via header field
429 Via via = transactionResponse.getTopmostVia(); local
430 String transport = via.getTransport();
434 int port = via.getRPort();
436 port = via.getPort();
444 // Otherwise, if the Via header field value contains a
454 if (via.getMAddr() != null) {
455 host = via.getMAddr()
    [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...]
SIPResponse.java 47 import gov.nist.javax.sip.header.Via;
404 * Check the response structure. Must have from, to CSEQ and VIA
418 throw new ParseException(Via.NAME+ " Is missing ", 0);
620 * Sets the Via branch for CANCEL or ACK requests
622 * @param via
626 private final void setBranch( Via via, String method ) {
639 via.setBranch( branch );
676 * @param via -- the Via header to assign to the reques
    [all...]
SIPRequest.java 212 * the contact headers. (2) Request must have cseq, to and from and via headers. (3) Method in
246 throw new ParseException("No via header in request! ", 0);
767 * constructed by a client MUST have only a single Via header field value matching the top
768 * Via value in the request being cancelled. Using the same values for these header fields
868 // The ACK MUST contain a single Via header field
992 Via via = (Via) (((ViaList) nextHeader).getFirst().clone()); local
1075 Via via = (Via) this.getViaHeaders().getFirst(); local
1086 Via via = (Via) this.getViaHeaders().getFirst(); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/
css-properties-case-sensitive.js 2 'This test checks that access to CSS properties via JavaScript properties on DOM elements is case sensitive.'
  /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/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/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...]
  /external/sqlite/android/
Android.mk 57 # (as of 2009-08-02), in which phone_number_compare() is tested via sqlite's custom
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-setattribute.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener attached via setattribute.");
basic.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener set via window.onstorage.");
  /external/blktrace/doc/
blktrace.tex 43 output (via blkparse).
335 The \emph{blktrace} utility extracts event traces from the kernel (via
349 more filter masks via the \emph{-a} option.
355 \item As noted above, the events are passed up via a series of buffers
357 specified via the \emph{-b} and \emph{-n} arguments respectively.
365 The \emph{device} portion of the event file name can be changed via
371 \item The default behaviour for blktrace is to run forever until explicitly killed by the user (via a control-C, or \emph{kill} utility invocation). There are two ways to modify this:
375 a running trace -- via the \emph{-k} option.
377 \item You can specify a run-time duration for blktrace via the
402 option, multiple filters may be combined via multiple \emph{-a} comman
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1118.js 42 // This function should be optimized via OSR.
regress-263.js 28 // Exits via return, break, or continue from within try/finally or
regress-603.js 28 // Calling non-objects directly or via Function.prototype.call should
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLObjectElement07.js 78 The codeType attribute specifies the data downloaded via the classid

Completed in 702 milliseconds

1 2 3