HomeSort by relevance Sort by last modified time
    Searched full:mark (Results 1 - 25 of 2761) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/include/linux/netfilter_ipv4/
ipt_MARK.h 6 unsigned long long mark; member in struct:ipt_mark_target_info
8 unsigned long mark;
20 unsigned long long mark; member in struct:ipt_mark_target_info_v1
22 unsigned long mark;
ipt_2mark.h 6 unsigned long long mark, mask; member in struct:ipt_mark_info
8 unsigned long mark, mask;
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_MARK.h 6 unsigned long long mark; member in struct:ip6t_mark_target_info
8 unsigned long mark;
ip6t_mark_.h 6 unsigned long long mark, mask; member in struct:ip6t_mark_info
8 unsigned long mark, mask;
  /external/iptables/extensions/
libip6t_MARK.man 1 This is used to set the netfilter mark value associated with the
6 .BI "--set-mark " "mark"
libip6t_mark.man 1 This module matches the netfilter mark field associated with a packet
3 .B MARK
6 .BR "--mark " "\fIvalue\fP[/\fImask\fP]"
7 Matches packets with the given unsigned mark value (if a \fImask\fP is
libipt_connmark.man 1 This module matches the netfilter mark field associated with a connection
6 .BI "--mark " "value[/mask]"
7 Matches packets in connections with the given mark value (if a mask is
8 specified, this is logically ANDed with the mark before the
libipt_mark.man 1 This module matches the netfilter mark field associated with a packet
3 .B MARK
6 .BR "--mark " "\fIvalue\fP[/\fImask\fP]"
7 Matches packets with the given unsigned mark value (if a \fImask\fP is
libipt_CONNMARK.man 1 This module sets the netfilter mark value associated with a connection
3 .B --set-mark mark[/mask]
4 Set connection mark. If a mask is specified then only those bits set in the
7 .B --save-mark [--mask mask]
8 Copy the netfilter packet mark value to the connection mark. If a mask
11 .B --restore-mark [--mask mask]
12 Copy the connection mark value to the packet. If a mask is specified
libip6t_MARK.c 1 /* Shared library add-on to iptables to add MARK target support. */
17 "MARK target v%s options:\n"
18 " --set-mark value Set nfmark value\n"
24 { .name = "set-mark", .has_arg = 1, .flag = 0, .val = '1' },
48 &markinfo->mark))
51 &markinfo->mark))
53 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
56 "MARK target: Can't specify --set-mark twice");
72 "MARK target: Parameter --set-mark is required")
114 struct ip6tables_target mark = { variable in typeref:struct:ip6tables_target
    [all...]
libipt_MARK.man 1 This is used to set the netfilter mark value associated with the
6 .BI "--set-mark " "value"
9 .BI "--and-mark " "value"
12 .BI "--or-mark " "value"
libipt_MARK.c 1 /* Shared library add-on to iptables to add MARK target support. */
17 "MARK target v%s options:\n"
18 " --set-mark value Set nfmark value\n"
19 " --and-mark value Binary AND the nfmark with value\n"
20 " --or-mark value Binary OR the nfmark with value\n"
26 { "set-mark", 1, 0, '1' },
27 { "and-mark", 1, 0, '2' },
28 { "or-mark", 1, 0, '3' },
52 &markinfo->mark))
55 &markinfo->mark))
    [all...]
libip6t_2mark.c 17 "MARK match v%s options:\n"
18 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
24 { "mark", 1, 0, '1' },
43 markinfo->mark = strtoull(optarg, &end, 0);
49 markinfo->mark = strtoul(optarg, &end, 0);
56 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
70 print_mark(unsigned long long mark, unsigned long long mask, int numeric)
73 printf("0x%llx/0x%llx ", mark, mask);
75 printf("0x%llx ", mark);
79 print_mark(unsigned long mark, unsigned long mask, int numeric
126 static struct ip6tables_match mark = { variable in typeref:struct:ip6tables_match
    [all...]
libipt_2mark.c 17 "MARK match v%s options:\n"
18 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
24 { "mark", 1, 0, '1' },
43 markinfo->mark = strtoull(optarg, &end, 0);
49 markinfo->mark = strtoul(optarg, &end, 0);
56 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
70 print_mark(unsigned long long mark, unsigned long long mask, int numeric)
73 printf("0x%llx/0x%llx ", mark, mask);
75 printf("0x%llx ", mark);
79 print_mark(unsigned long mark, unsigned long mask, int numeric
126 static struct iptables_match mark = { variable in typeref:struct:iptables_match
    [all...]
  /external/kernel-headers/original/linux/netfilter/
xt_MARK.h 6 unsigned long mark; member in struct:xt_mark_target_info
17 unsigned long mark; member in struct:xt_mark_target_info_v1
xt_mark.h 5 unsigned long mark, mask; member in struct:xt_mark_info
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_MARK.h 6 unsigned long mark; member in struct:xt_mark_target_info
17 unsigned long mark; member in struct:xt_mark_target_info_v1
xt_mark.h 5 unsigned long mark, mask; member in struct:xt_mark_info
  /external/zlib/contrib/blast/
README 3 Mark Adler
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
AtomicMarkableReferenceTest.java 20 * constructor initializes to given reference and mark
32 * get returns the last values of reference and mark set
35 boolean[] mark = new boolean[1];
39 assertSame(one, ai.get(mark));
40 assertFalse(mark[0]);
44 assertSame(two, ai.get(mark));
45 assertFalse(mark[0]);
49 assertSame(one, ai.get(mark));
50 assertTrue(mark[0]);
57 boolean[] mark = new boolean[1]
    [all...]
AtomicStampedReferenceTest.java 35 int[] mark = new int[1]; local
39 assertSame(one, ai.get(mark));
40 assertEquals(0, mark[0]);
44 assertSame(two, ai.get(mark));
45 assertEquals(0, mark[0]);
49 assertSame(one, ai.get(mark));
50 assertEquals(1,mark[0]);
57 int[] mark = new int[1]; local
62 assertSame(one, ai.get(mark));
63 assertEquals(1, mark[0])
71 int[] mark = new int[1]; local
135 int[] mark = new int[1]; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_mark_m.h 9 unsigned long mark, mask; member in struct:ebt_mark_m_info
  /bionic/libc/kernel/common/linux/netfilter/
xt_MARK.h 16 unsigned long mark; member in struct:xt_mark_target_info
26 unsigned long mark; member in struct:xt_mark_target_info_v1
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
mkskel.tpu 15 rest_of_line := CREATE_RANGE(MARK(NONE), MARK(NONE)); !also outside loops
17 EXITIF MARK(NONE) = END_OF(skelfile); !are we done yet?
18 COPY_TEXT(' "'); start_pos := MARK(NONE);
19 POSITION(LINE_END); end_pos := MARK(NONE);
26 MODIFY_RANGE(rest_of_line, MARK(NONE), end_pos);
  /external/guava/src/com/google/common/io/
CountingInputStream.java 32 private long mark = -1; field in class:CountingInputStream
70 @Override public void mark(int readlimit) { method in class:CountingInputStream
71 in.mark(readlimit);
72 mark = count;
73 // it's okay to mark even if mark isn't supported, as reset won't work
78 throw new IOException("Mark not supported");
80 if (mark == -1) {
81 throw new IOException("Mark not set");
85 count = mark;
    [all...]

Completed in 383 milliseconds

1 2 3 4 5 6 7 8 91011>>