HomeSort by relevance Sort by last modified time
    Searched defs:tos (Results 76 - 100 of 226) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_ip.h 35 uint8_t tos; member in struct:ebt_ip_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_ip.h 35 uint8_t tos; member in struct:ebt_ip_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_ip.h 35 uint8_t tos; member in struct:ebt_ip_info
  /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...]
  /external/libppp/src/
ncp.h 42 unsigned tos : 1; /* Urgent IPTOS_LOWDELAY packets ? */ member in struct:ncp::__anon10784::__anon10785
94 #define ncp_ClearUrgentTOS(ncp) (ncp)->cfg.urgent.tos = 0;
95 #define ncp_SetUrgentTOS(ncp) (ncp)->cfg.urgent.tos = 1;
  /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
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/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 56 TestOutputStream tos = new TestOutputStream(); local
57 CipherOutputStream cos = new CipherOutputStream(tos);
60 byte[] result = tos.toByteArray();
72 TestOutputStream tos = new TestOutputStream(); local
73 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
78 byte[] result = tos.toByteArray();
90 TestOutputStream tos = new TestOutputStream(); local
91 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
94 byte[] result = tos.toByteArray();
105 TestOutputStream tos = new TestOutputStream() local
148 TestOutputStream tos = new TestOutputStream(); local
164 TestOutputStream tos = new TestOutputStream(); local
    [all...]
  /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)));
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;
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...]
  /external/iproute2/include/linux/
fib_rules.h 22 __u8 tos; member in struct:fib_rule_hdr
  /external/srec/tools/grxmlcompile/
sub_min.cpp 65 int fix, six, fnxt, snxt, tof, tos, count; local
98 tos= arc[forwardList[six]]->GetToId();
100 // printf ("Debug inner %d %d, %d %d\n", tof, tos, equivMap[tof], equivMap[tos]);
103 // if (tos >= 0)
104 // assert (tos == equivMap[tos]);
108 || tos != tof)
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 66 TestOutputStream tos = new TestOutputStream(); local
67 CipherOutputStream cos = new CipherOutputStream(tos){};
70 byte[] result = tos.toByteArray();
82 TestOutputStream tos = new TestOutputStream(); local
83 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
88 byte[] result = tos.toByteArray();
100 TestOutputStream tos = new TestOutputStream(); local
101 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher());
104 byte[] result = tos.toByteArray();
122 TestOutputStream tos = new TestOutputStream() local
165 TestOutputStream tos = new TestOutputStream(); local
181 TestOutputStream tos = new TestOutputStream(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fib_rules.h 21 __u8 tos; member in struct:fib_rule_hdr
  /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/linux/
fib_rules.h 21 __u8 tos; member in struct:fib_rule_hdr
  /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/linux/
fib_rules.h 21 __u8 tos; member in struct:fib_rule_hdr
  /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
  /bionic/libc/kernel/common/linux/
ip.h 25 #define IPTOS_TOS(tos) ((tos)&IPTOS_TOS_MASK)
32 #define IPTOS_PREC(tos) ((tos)&IPTOS_PREC_MASK)
97 __u8 tos; member in struct:iphdr
  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 232 protected int tos; field in class:lr_parser
501 tos = 0;
517 tos++;
526 lhs_sym = do_action((-act)-1, this, stack, tos);
536 tos--;
545 tos++;
665 tos = 0;
682 tos++;
692 lhs_sym = do_action((-act)-1, this, stack, tos);
704 tos--
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ip.h 18 #define IPTOS_TOS(tos) ((tos)&IPTOS_TOS_MASK)
25 #define IPTOS_PREC(tos) ((tos)&IPTOS_PREC_MASK)
85 __u8 tos; member in struct:iphdr
  /external/kernel-headers/original/linux/
ip.h 23 #define IPTOS_TOS(tos) ((tos)&IPTOS_TOS_MASK)
30 #define IPTOS_PREC(tos) ((tos)&IPTOS_PREC_MASK)
92 __u8 tos; member in struct:iphdr

Completed in 461 milliseconds

1 2 34 5 6 7 8 910