HomeSort by relevance Sort by last modified time
    Searched refs:tos (Results 176 - 200 of 357) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fib_rules.h 21 __u8 tos; member in struct:fib_rule_hdr
  /external/iproute2/ip/
link_gre.c 32 fprintf(stderr, " [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ]\n");
36 fprintf(stderr, " TOS := { NUMBER | inherit }\n");
63 __u8 tos = 0; local
126 tos = rta_getattr_u8(greinfo[IFLA_GRE_TOS]);
224 } else if (!matches(*argv, "tos") ||
232 invarg("bad TOS value", *argv);
233 tos = uval;
235 tos = 1;
264 addattr_l(n, 1024, IFLA_GRE_TOS, &tos, 1)
315 int tos = rta_getattr_u8(tb[IFLA_GRE_TOS]); local
    [all...]
iptunnel.c 40 fprintf(stderr, " [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ]\n");
44 fprintf(stderr, " TOS := { NUMBER | inherit }\n");
181 } else if (strcmp(*argv, "tos") == 0 ||
188 invarg("bad TOS value", *argv);
189 p->iph.tos = uval;
191 p->iph.tos = 1;
351 if (p->iph.tos) {
353 printf(" tos");
354 if (p->iph.tos&1
    [all...]
iproute.c 64 fprintf(stderr, " [ oif STRING ] [ tos TOS ]\n");
71 fprintf(stderr, "NODE_SPEC := [ TYPE ] PREFIX [ tos TOS ]\n");
104 int tos, tosmask; member in struct:__anon21159
167 if ((filter.tos^r->rtm_tos)&filter.tosmask)
375 fprintf(fp, "tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1, sizeof(b1)));
760 } else if (strcmp(*argv, "tos") == 0 ||
762 __u32 tos; local
764 if (rtnl_dsfield_a2n(&tos, *argv)
1138 __u32 tos; local
1377 __u32 tos; local
    [all...]
iprule.c 36 fprintf(stderr, "SELECTOR := [ not ] [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK[/MASK] ]\n");
127 fprintf(fp, "tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1, sizeof(b1)));
273 } else if (strcmp(*argv, "tos") == 0 ||
275 __u32 tos; local
277 if (rtnl_dsfield_a2n(&tos, *argv))
278 invarg("TOS value is invalid\n", *argv);
279 req.r.rtm_tos = tos;
  /external/iptables/extensions/
libxt_TOS.c 2 * Shared library add-on to iptables to add TOS target support
19 uint8_t tos; member in struct:ipt_tos_target_info
35 {.name = "set-tos", .id = O_SET_TOS, .type = XTTYPE_TOSMASK,
41 {.name = "set-tos", .id = O_SET_TOS, .type = XTTYPE_TOSMASK,
43 {.name = "and-tos", .id = O_AND_TOS, .type = XTTYPE_UINT8,
45 {.name = "or-tos", .id = O_OR_TOS, .type = XTTYPE_UINT8,
47 {.name = "xor-tos", .id = O_XOR_TOS, .type = XTTYPE_UINT8,
57 "TOS target options:\n"
58 " --set-tos value Set Type of Service/Priority field to value\n"
59 " --set-tos symbol Set TOS field (IPv4 only) by symbol\n
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLSocketImplWrapper.java 104 public void setTrafficClass(int tos) throws SocketException {
105 socket.setTrafficClass(tos);
SSLSocketWrapper.java 125 public void setTrafficClass(int tos) throws SocketException {
126 socket.setTrafficClass(tos);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/
route.h 119 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/net/
route.h 119 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/net/
route.h 119 #define RT_TOS(tos) ((tos) & IPTOS_TOS_MASK)
  /external/chromium_org/v8/src/
sampler.h 67 Address tos; // Top stack value (*sp). member in union:v8::internal::TickSample::__anon17059
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
gmon.h 118 * The type used to represent indices into gmonparam.tos[].
163 struct tostruct *tos; member in struct:gmonparam
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
gmon.h 118 * The type used to represent indices into gmonparam.tos[].
163 struct tostruct *tos; member in struct:gmonparam
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
gmon.h 118 * The type used to represent indices into gmonparam.tos[].
163 struct tostruct *tos; member in struct:gmonparam
  /external/bison/src/
tables.c 62 /* FROMS and TOS are indexed by vector_number.
64 If VECTOR is a nonterminal, (FROMS[VECTOR], TOS[VECTOR]) form an
67 If VECTOR is a state, TOS[VECTOR] is the array of actions to do on
71 FROMS[VECTOR], TOS[VECTOR]; and WIDTH[VECTOR] =
76 TOS state_number and action_number,
80 Let base_number be the type of FROMS, TOS, and WIDTH. */
85 static base_number **tos; variable
102 /* FROMS and TOS are reordered to be compressed. ORDER[VECTOR] is the
378 | Set FROMS, TOS, TALLY and WIDTH for S. |
402 tos[s] = sp2 = xnmalloc (count, sizeof *sp2)
    [all...]
  /external/chromium_org/tools/valgrind/
chrome_tests.bat 41 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
57 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer-on-windows"
  /external/qemu/slirp/
misc.c 635 u_int8_t tos = 0, emu = 0; local
664 tos = IPTOS_LOWDELAY;
666 tos = IPTOS_THROUGHPUT;
696 emup->tos = tos;
707 if (tos)
708 so->so_iptos = tos;
  /external/qemu/slirp-android/
misc.c 599 u_int8_t tos = 0, emu = 0; local
628 tos = IPTOS_LOWDELAY;
630 tos = IPTOS_THROUGHPUT;
660 emup->tos = tos;
671 if (tos)
672 so->so_iptos = tos;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.variables_3.2.400.v20100505.jar 
  /external/libppp/src/
ip.c 576 u_char tos; local
592 tos = 0; /* XXX: pip6->ip6_vfc >> 4 ? */
604 tos = pip->ip_tos;
651 if (tos == IPTOS_LOWDELAY && bundle->ncp.cfg.urgent.tos)
815 if (tos == IPTOS_LOWDELAY && bundle->ncp.cfg.urgent.tos)
  /external/openssh/
packet.c     [all...]
  /bionic/libc/include/netinet/
ip.h 107 * mapped to the lower 2 bits of the TOS field.
241 uint8_t tos; member in struct:iphdr
  /bionic/libc/kernel/common/linux/netfilter_ipv6/
ip6_tables.h 40 u_int8_t tos; member in struct:ip6t_ip6
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv6/
ip6_tables.h 38 u_int8_t tos; member in struct:ip6t_ip6

Completed in 1031 milliseconds

1 2 3 4 5 6 78 91011>>