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

1 2

  /external/strace/
rtnl_route.c 171 struct rtvia via; local
173 if (len < sizeof(via))
175 else if (!umove_or_printaddr(tcp, addr, &via)) {
176 PRINT_FIELD_XVAL("{", via, rtvia_family, addrfams, "AF_???");
183 via.rtvia_family, "rtvia_addr");
  /external/strace/tests/
nlattr_rtmsg.c 190 static const struct rtvia via = { local
196 RTA_VIA, pattern, via,
203 char rtviabuf[sizeof(via) + sizeof(a4)];
204 memcpy(rtviabuf, &via, sizeof(via));
205 memcpy(rtviabuf + sizeof(via), &a4, sizeof(a4));
  /external/strace/tests-m32/
nlattr_rtmsg.c 190 static const struct rtvia via = { local
196 RTA_VIA, pattern, via,
203 char rtviabuf[sizeof(via) + sizeof(a4)];
204 memcpy(rtviabuf, &via, sizeof(via));
205 memcpy(rtviabuf + sizeof(via), &a4, sizeof(a4));
  /external/strace/tests-mx32/
nlattr_rtmsg.c 190 static const struct rtvia via = { local
196 RTA_VIA, pattern, via,
203 char rtviabuf[sizeof(via) + sizeof(a4)];
204 memcpy(rtviabuf, &via, sizeof(via));
205 memcpy(rtviabuf + sizeof(via), &a4, sizeof(a4));
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 295 ViaHeader via = (ViaHeader) request.getHeader(ViaHeader.NAME); local
296 transport = via.getTransport();
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...]
SIPDialog.java 57 import gov.nist.javax.sip.header.Via;
1926 Via via = lp.getViaHeader(); local
2044 Via via = ((SIPClientTransaction) clientTransactionId).getOutgoingViaHeader(); local
2459 Via via = this.lastResponse.getTopmostVia(); local
    [all...]
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...]
SIPTransactionStack.java 44 import gov.nist.javax.sip.header.Via;
910 Via via = sipMessage.getTopmostVia(); local
911 if (via.getBranch() != null) {
936 Via via = sipMessage.getTopmostVia(); local
937 if (via.getBranch() != null) {
    [all...]
  /external/v8/tools/clang/plugins/
CheckIPCVisitor.cpp 277 std::string via; local
279 via = " via '" + entry_type + "'";
281 diagnostics.Report(loc, error) << exit_type << via; local
  /external/iproute2/bridge/
fdb.c 42 " [ port PORT] [ vni VNI ] [ via DEV ]\n"
220 fprintf(fp, "via %s ", ifname);
226 fprintf(fp, "via ifindex %u ", ifindex);
422 unsigned int via = 0; local
455 } else if (strcmp(*argv, "via") == 0) {
457 via = if_nametoindex(*argv);
458 if (via == 0)
530 if (via)
531 addattr32(&req.n, sizeof(req), NDA_IFINDEX, via);
  /external/iproute2/ip/
iproute.c 83 fprintf(stderr, "NH := [ encap ENCAPTYPE ENCAPHDR ] [ via [ FAMILY ] ADDRESS ]\n");
151 inet_prefix via = { .family = r->rtm_family }; local
210 struct rtvia *via = RTA_DATA(tb[RTA_VIA]); local
212 family = via->rtvia_family;
228 memcpy(&via.data, RTA_DATA(tb[RTA_GATEWAY]), host_len/8);
233 via.family = rtvia->rtvia_family;
234 memcpy(&via.data, rtvia->rtvia_addr, len);
254 if (filter.rvia.family && inet_addr_match(&via, &filter.rvia, filter.rvia.bitlen))
414 fprintf(fp, "via %s ",
419 struct rtvia *via = RTA_DATA(tb[RTA_VIA]) local
664 struct rtvia *via = RTA_DATA(tb[RTA_VIA]); local
    [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/nist-sip/java/gov/nist/javax/sip/message/
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...]
SIPMessage.java 67 import gov.nist.javax.sip.header.Via;
413 // in the topmost Via header
816 * @return A string containing the concatenation of various portions of the From,To,Via and
821 * Ledgard of IPera for generating transactionIDs when no port is present in the via
830 Via topVia = null;
832 topVia = (Via) this.getViaHeaders().getFirst();
1014 Via via = (Via) it.next(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 70 * This splits up via headers into multiple lines for readability ( better for
1076 Via via = new Via(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 931 String via = null; local
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
android-all-o-preview-4-robolectric-0.jar 

Completed in 891 milliseconds

1 2