HomeSort by relevance Sort by last modified time
    Searched refs:cwr (Results 1 - 18 of 18) sorted by null

  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_ECN.h 33 __u8 ece : 1, cwr : 1; member in struct:ipt_ECN_info::__anon953::__anon954
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 19 #define IPT_ECN_OP_SET_CWR 0x20 /* set CWR bit of TCP header */
28 __u8 ece:1, cwr:1; /* TCP ECT bits */ member in struct:ipt_ECN_info::__anon22432::__anon22433
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_ECN.h 20 #define IPT_ECN_OP_SET_CWR 0x20 /* set CWR bit of TCP header */
29 __u8 ece:1, cwr:1; /* TCP ECT bits */ member in struct:ipt_ECN_info::__anon23159::__anon23160
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 19 #define IPT_ECN_OP_SET_CWR 0x20 /* set CWR bit of TCP header */
28 __u8 ece:1, cwr:1; /* TCP ECT bits */ member in struct:ipt_ECN_info::__anon62703::__anon62704
  /external/iptables/extensions/
libipt_ECN.c 33 " --ecn-tcp-cwr Set the IPv4 CWR bit (0 or 1)\n"
40 {.name = "ecn-tcp-cwr", .id = O_ECN_TCP_CWR, .type = XTTYPE_UINT8,
58 einfo->proto.tcp.cwr = 0;
62 einfo->proto.tcp.cwr = cb->val.u8;
92 && einfo->proto.tcp.cwr == 0)
99 printf(" CWR=%u", einfo->proto.tcp.cwr);
113 && einfo->proto.tcp.cwr == 0)
121 printf(" --ecn-tcp-cwr %d", einfo->proto.tcp.cwr)
    [all...]
  /bionic/libc/kernel/uapi/linux/
tcp.h 30 __u16 res1 : 4, doff : 4, fin : 1, syn : 1, rst : 1, psh : 1, ack : 1, urg : 1, ece : 1, cwr : 1; member in struct:tcphdr
32 __u16 doff : 4, res1 : 4, cwr : 1, ece : 1, urg : 1, ack : 1, psh : 1, rst : 1, syn : 1, fin : 1; member in struct:tcphdr
  /external/iproute2/include/uapi/linux/
tcp.h 40 cwr:1; member in struct:tcphdr
44 cwr:1, member in struct:tcphdr
  /external/kernel-headers/original/uapi/linux/
tcp.h 40 cwr:1; member in struct:tcphdr
44 cwr:1, member in struct:tcphdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
tcp.h 39 cwr:1; member in struct:tcphdr
43 cwr:1, member in struct:tcphdr
  /external/python/cpython2/Lib/test/
test_itertools.py 115 'Pure python version from cwr()'
151 cwr = combinations_with_replacement
152 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
153 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
154 self.assertRaises(TypeError, cwr, None) # pool is not iterable
155 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
156 self.assertEqual(list(cwr('ABC', 2)),
193 result = list(cwr(values, r))
223 cwr = combinations_with_replacement
224 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_itertools.py 115 'Pure python version from cwr()'
146 cwr = combinations_with_replacement
147 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
148 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
149 self.assertRaises(TypeError, cwr, None) # pool is not iterable
150 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
151 self.assertEqual(list(cwr('ABC', 2)),
188 result = list(cwr(values, r))
213 cwr = combinations_with_replacement
214 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_itertools.py 115 'Pure python version from cwr()'
146 cwr = combinations_with_replacement
147 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
148 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
149 self.assertRaises(TypeError, cwr, None) # pool is not iterable
150 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
151 self.assertEqual(list(cwr('ABC', 2)),
188 result = list(cwr(values, r))
213 cwr = combinations_with_replacement
214 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_itertools.py 115 'Pure python version from cwr()'
146 cwr = combinations_with_replacement
147 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
148 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
149 self.assertRaises(TypeError, cwr, None) # pool is not iterable
150 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
151 self.assertEqual(list(cwr('ABC', 2)),
188 result = list(cwr(values, r))
213 cwr = combinations_with_replacement
214 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_itertools.py 115 'Pure python version from cwr()'
146 cwr = combinations_with_replacement
147 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
148 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
149 self.assertRaises(TypeError, cwr, None) # pool is not iterable
150 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
151 self.assertEqual(list(cwr('ABC', 2)),
188 result = list(cwr(values, r))
213 cwr = combinations_with_replacement
214 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_itertools.py 115 'Pure python version from cwr()'
145 cwr = combinations_with_replacement
146 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
147 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
148 self.assertRaises(TypeError, cwr, None) # pool is not iterable
149 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
150 self.assertEqual(list(cwr('ABC', 2)),
187 result = list(cwr(values, r))
211 self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1)
212 self.assertNotEqual(len(set(map(id, list(cwr('abcde', 3))))), 1)
    [all...]
  /external/libnl/lib/idiag/
idiag.c 188 __ADD(TCP_CA_CWR, cwr)
  /external/python/cpython3/Lib/test/
test_itertools.py 251 'Pure python version from cwr()'
291 cwr = combinations_with_replacement
292 self.assertRaises(TypeError, cwr, 'abc') # missing r argument
293 self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
294 self.assertRaises(TypeError, cwr, None) # pool is not iterable
295 self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
298 self.assertEqual(list(op(cwr('ABC', 2))),
300 testIntermediate = cwr('ABC', 2)
340 result = list(cwr(values, r))
364 self.pickletest(proto, cwr(values,r)) # test picklin
    [all...]
  /external/android-clat/
dump.c 183 printf("CWR = %x\n",tcp->cwr);
186 printf("CWR/ECE = %x\n",tcp->res2);

Completed in 222 milliseconds