HomeSort by relevance Sort by last modified time
    Searched full:mark (Results 26 - 50 of 2319) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java 11 * along with a mark bit, that can be updated atomically.
38 * @param initialMark the initial mark
54 * Returns the current value of the mark.
56 * @return the current value of the mark
63 * Returns the current values of both the reference and the mark.
67 * {@code markholder[0]} will hold the value of the mark.
77 * Atomically sets the value of both the reference and mark
80 * and the current mark is equal to the expected mark.
88 * @param expectedMark the expected value of the mark
    [all...]
  /external/iptables/extensions/
libip6t_CONNMARK.c 34 struct ipt_connmark_target_info mark;
44 " --set-mark value[/mask] Set conntrack mark value\n"
45 " --save-mark [--mask mask] Save the packet nfmark in the connection\n"
46 " --restore-mark [--mask mask] Restore saved nfmark value\n"
52 { "set-mark", 1, 0, '1' },
53 { "save-mark", 0, 0, '2' },
54 { "restore-mark", 0, 0, '3' },
82 markinfo->mark = strtoul(optarg, &end, 0);
87 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg)
    [all...]
libipt_CONNMARK.c 34 struct ipt_connmark_target_info mark;
44 " --set-mark value[/mask] Set conntrack mark value\n"
45 " --save-mark [--mask mask] Save the packet nfmark in the connection\n"
46 " --restore-mark [--mask mask] Restore saved nfmark value\n"
52 { "set-mark", 1, 0, '1' },
53 { "save-mark", 0, 0, '2' },
54 { "restore-mark", 0, 0, '3' },
82 markinfo->mark = strtoul(optarg, &end, 0);
87 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg)
    [all...]
libip6t_SECMARK.man 1 This is used to set the security mark value associated with the
libipt_SECMARK.man 1 This is used to set the security mark value associated with the
  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 28 * This class can be used as a mark when keeping classes, class members, and
47 * @param reason the reason for this mark.
59 * @param previousUsageMark the previous mark to which this one is linked.
60 * @param reason the reason for this mark.
61 * @param clazz the class causing this mark.
74 * @param previousUsageMark the previous mark to which this one is linked.
75 * @param reason the reason for this mark.
76 * @param clazz the class causing this mark.
77 * @param member the member in the above class causing this mark.
95 * Creates a new ShortestUsageMark, based on another mark
    [all...]
UsageMarker.java 87 // Mark this class.
97 // Mark this class's name.
100 // Mark the superclass.
110 // Explicitly mark the <clinit> method.
115 // Explicitly mark the parameterless <init> method.
124 // Mark the attributes.
137 // well. We'll mark them as such (here and in all subclasses).
139 // Mark the superclass.
146 // Mark the interfaces.
159 // Mark all methods
    [all...]
AnnotationUsageMarker.java 62 * @param usageMarker the usage marker that is used to mark the classes
78 // Mark the necessary annotation information.
85 // Mark this attribute as being used as well.
95 // Mark the necessary annotation information.
102 // Mark this attribute as being used as well.
112 // Mark the necessary annotation information in any annotation elements.
115 // Always mark annotation defaults.
128 // Mark the annotation as being used.
133 // Mark the necessary element values.
149 // Mark the element value as being used
    [all...]
  /dalvik/vm/alloc/
GC.h 35 * Functions that mark an object.
41 * Mark an object and schedule it to be scanned for
49 * Mark an object and schedule it to be scanned for
63 * If obj points to a valid object, mark it and
83 * Mark all class objects loaded by the root class loader;
91 * Mark all root ThreadGroup objects, guaranteeing that
96 * will mark all VM-reachable Thread objects. Someone else
97 * must scan the root class loader, which will mark java/lang/ThreadGroup.
107 * Mark all interned string objects.
121 * Mark all primitive class objects
    [all...]
  /external/icu4c/layout/
CanonShaping.cpp 51 le_int32 mark; local
53 for (mark = i; mark < charCount; mark += 1) {
54 if (combiningClasses[mark] == 0) {
59 sortMarks(indices, combiningClasses, i, mark);
  /external/iptables/include/linux/netfilter_ipv4/
ipt_2connmark.h 15 unsigned long long mark, mask; member in struct:ipt_connmark_info
17 unsigned long mark, mask;
ipt_CONNMARK.h 21 unsigned long long mark; member in struct:ipt_connmark_target_info
24 unsigned long mark;
  /external/stlport/test/eh/
TestClass.cpp 5 * Mark of the Unicorn, Inc.
11 * in supporting documentation. Mark of the Unicorn makes no
random_number.h 5 * Mark of the Unicorn, Inc.
11 * in supporting documentation. Mark of the Unicorn makes no
test_bitset.cpp 5 * Mark of the Unicorn, Inc.
11 * in supporting documentation. Mark of the Unicorn makes no
  /dalvik/libcore/archive/src/main/java/java/util/jar/
InitManifest.java 63 int mark = pos; local
89 chunks.put(entryNameValue, new Manifest.Chunk(mark, pos));
90 mark = pos;
123 private byte[] wrap(int mark, int pos) {
124 byte[] buffer = new byte[pos - mark];
125 System.arraycopy(buf, mark, buffer, 0, pos - mark);
131 int mark = pos; local
137 byte[] nameBuffer = wrap(mark, pos - 1);
155 "archive.30", wrap(mark, buf.length))); //$NON-NLS-1
162 int mark = pos; local
    [all...]
  /bionic/libc/kernel/common/linux/netfilter/
xt_connmark.h 16 unsigned long mark, mask; member in struct:xt_connmark_info
xt_mark.h 16 unsigned long mark, mask; member in struct:xt_mark_info
xt_CONNMARK.h 22 unsigned long mark; member in struct:xt_connmark_target_info
  /dalvik/libcore/nio/src/main/java/java/nio/
Buffer.java 33 * <li>Mark: used to remember the current position, so that you can reset the
34 * position later. Mark may not be negative and no greater than position.</li>
37 * while changing the position, limit and mark of a read-only buffer is OK.</li>
50 * <code>UNSET_MARK</code> means the mark has not been set.
66 * Mark is where position will be set when <code>reset()</code> is called.
67 * Mark is not set by default. Mark is always no less than zero and no
70 int mark = UNSET_MARK; field in class:Buffer
150 * and mark is cleared.
156 mark = UNSET_MARK
242 public final Buffer mark() { method in class:Buffer
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
ObjectStreamConstants.java 43 * Tag to mark a {@code null} object reference.
48 * Tag to mark a reference to an object that has already been written to the
54 * Tag to mark a new class descriptor.
59 * Tag to mark a new object.
64 * Tag to mark a new string.
69 * Tag to mark a new array.
74 * Tag to mark a reference to a class.
79 * Tag to mark a block of optional data. The byte following this tag
85 * Tag to mark the end of block data blocks for an object.
90 * Tag to mark a stream reset
    [all...]
FilterInputStream.java 66 * Sets a mark position in this stream. The parameter {@code readlimit}
67 * indicates how many bytes can be read before the mark is invalidated.
71 * This implementation sets a mark in the filtered stream.
75 * the mark is invalidated.
80 public synchronized void mark(int readlimit) { method in class:FilterInputStream
81 in.mark(readlimit);
85 * Indicates whether this stream supports {@code mark()} and {@code reset()}.
89 * @return {@code true} if {@code mark()} and {@code reset()} are supported,
91 * @see #mark(int)
162 * if this stream is already closed, no mark has been set or th
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
CharSequenceReader.java 26 * <strong>Note:</strong> Supports {@link #mark(int)} and {@link #reset()}.
35 private int mark; field in class:CharSequenceReader
51 mark = 0;
55 * Mark the current position.
59 public void mark(int readAheadLimit) { method in class:CharSequenceReader
60 mark = idx;
64 * Mark is supported (returns true).
120 * mark has not been called).
123 idx = mark;
  /external/iproute2/include/linux/
fib_rules.h 43 FRA_FWMARK, /* mark */
49 FRA_FWMASK, /* mask for netfilter mark */
  /external/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no

Completed in 552 milliseconds

12 3 4 5 6 7 8 91011>>