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

1 2 3

  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_TOS.h 9 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 5 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_TOS.h 20 u_int8_t tos; member in struct:ipt_tos_target_info
ipt_tos_.h 16 u_int8_t tos; member in struct:ipt_tos_info
  /external/iptables/extensions/
libipt_2tos.c 1 /* Shared library add-on to iptables to add TOS matching support. */
11 /* TOS names and values. */
15 unsigned char TOS;
32 "TOS match v%s options:\n"
33 "[!] --tos value Match Type of Service field from one of the\n"
40 TOS_values[i].TOS,
41 TOS_values[i].TOS);
46 { "tos", 1, 0, '1' },
54 unsigned int tos; local
56 if (string_to_number(s, 0, 255, &tos) != -1)
155 static struct iptables_match tos = { variable in typeref:struct:iptables_match
    [all...]
libipt_TOS.c 1 /* Shared library add-on to iptables to add TOS target support. */
13 struct ipt_tos_target_info tos; member in struct:tosinfo
16 /* TOS names and values. */
20 unsigned char TOS;
37 "TOS target v%s options:\n"
38 " --set-tos value Set Type of Service field to one of the\n"
45 TOS_values[i].TOS,
46 TOS_values[i].TOS);
51 { "set-tos", 1, 0, '1' },
64 unsigned int i, tos; local
156 static struct iptables_target tos = { variable in typeref:struct:iptables_target
    [all...]
  /external/qemu/slirp/
misc.h 54 u_int8_t tos; member in struct:tos_t
61 u_int8_t tos; member in struct:emu_t
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.h 54 u_int8_t tos; member in struct:tos_t
61 u_int8_t tos; member in struct:emu_t
  /external/iproute2/ip/
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)));
267 } else if (strcmp(*argv, "tos") == 0) {
268 __u32 tos; local
270 if (rtnl_dsfield_a2n(&tos, *argv))
271 invarg("TOS value is invalid\n", *argv);
272 req.r.rtm_tos = tos;
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 = *(__u8 *)RTA_DATA(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 = *(__u8 *)RTA_DATA(tb[IFLA_GRE_TOS]); local
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 79 TestOutputStream tos = new TestOutputStream(); local
80 CipherOutputStream cos = new CipherOutputStream(tos){};
83 byte[] result = tos.toByteArray();
101 TestOutputStream tos = new TestOutputStream(); local
102 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
107 byte[] result = tos.toByteArray();
125 TestOutputStream tos = new TestOutputStream(); local
126 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
129 byte[] result = tos.toByteArray();
153 TestOutputStream tos = new TestOutputStream() local
214 TestOutputStream tos = new TestOutputStream(); local
236 TestOutputStream tos = new TestOutputStream(); local
    [all...]
  /external/iproute2/include/linux/
fib_rules.h 21 __u8 tos; member in struct:fib_rule_hdr

Completed in 279 milliseconds

1 2 3