Searched defs:mark (Results 76 - 100 of 126) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelByteBufferWavetable.java116 public synchronized void mark(int readlimit) { method in class:ModelByteBufferWavetable.Buffer8PlusInputStream
H A DSoftMixingSourceDataLine.java95 public void mark(int readlimit) { method in class:SoftMixingSourceDataLine.NonBlockingFloatInputStream
96 ais.mark(readlimit);
H A DSoftMixingDataLine.java149 public void mark(int readlimit) { method in class:SoftMixingDataLine.AudioFloatInputStreamResampler
150 ais.mark((int) (readlimit * pitch[0]));
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.hpp310 Thread *_thread; // thread that owns this mark
319 void set_previous_handle_mark(HandleMark* mark) { _previous_handle_mark = mark; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DDefaultParticleBinder.java141 mark(p);
149 mark(p);
155 mark(p);
171 mark(outerParticle);
177 mark(outerParticle);
190 mark(outerParticle);
211 private void mark( XSParticle p ) { method in class:DefaultParticleBinder.Checker
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputStream.java114 buffer.mark(Integer.MAX_VALUE);
119 buffer.mark(Integer.MAX_VALUE);
577 public void mark(int value) { buffer.mark(value); } method in class:DerInputStream
581 * Return to the position of the last <code>mark</code>
582 * call. A mark is implicitly set at the beginning of
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java375 * 2. mark the key so that incoming data is to be consumed and discarded
505 public synchronized void mark (int readlimit) { method in class:HttpServer.NioInputStream
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DRequest.java334 public synchronized void mark (int readlimit) { method in class:Request.ReadStream
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUTF_8.java175 int mark, int nb)
177 src.position(mark);
179 src.position(mark);
190 private static CoderResult xflow(Buffer src, int mark, int nb) { argument
193 src.position(mark);
282 int mark = src.position();
284 while (mark < limit) {
289 return xflow(src, mark, 1); // overflow
291 mark++;
294 if (limit - mark <
174 malformed(ByteBuffer src, int mark, int nb) argument
504 overflow(CharBuffer src, int mark) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DWrapperInputStream.java87 public void mark(int readlimit) { stream.mark(readlimit); } method in class:WrapperInputStream
H A DCDRInputStream.java391 public final void mark(int readlimit) { method in class:CDRInputStream
392 impl.mark(readlimit);
H A DCDRInputStreamBase.java143 public abstract void mark(int readlimit); method in class:CDRInputStreamBase
147 // don't have any guarantees that mark/reset will work in their
151 // is.mark(10000);
H A DIDLJavaSerializationInputStream.java89 // Used for mark / reset operations.
469 /* // Cannot use this efficient read due to mark/reset support.
836 public void mark(int readLimit) { method in class:IDLJavaSerializationInputStream
837 // Nested mark disallowed.
838 // Further, mark is not supported until first 16 bytes are read.
840 throw wrapper.javaSerializationException("mark");
848 // Note: only ByteArrayInputStream supports mark/reset.
850 throw wrapper.javaSerializationException("mark");
852 is.mark(readLimit);
861 // Note: only ByteArrayInputStream supports mark/rese
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java57 * mark, and decreases the cost of keeping the mark updated.
258 * Holds the data for a mark... separately from
259 * the real mark so that the real mark (Position
279 * is held by the mark, so it is adjusted according
300 void setMark(MarkData mark) { argument
301 this.mark = mark;
305 return mark
312 MarkData mark; field in class:GapContent.StickyPosition
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStreamImpl.java41 * byte order interpretation, buffering, mark/reset, discarding,
779 public void mark() { method in class:ImageInputStreamImpl
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.inline.hpp55 inline void CMSBitMap::mark(HeapWord* addr) { function in class:CMSBitMap
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweep.cpp69 // This method contains all heap specific policy for invoking mark sweep.
70 // PSMarkSweep::invoke_no_policy() will only attempt to mark-sweep-compact
91 IsGCActiveMark mark; local
138 // We need to track unique mark sweep invocations as well.
511 // Recursively traverse all live objects and mark them
530 // Do not treat nmethods as strong roots for mark/sweep, since we can unload them.
H A DpsScavenge.cpp232 IsGCActiveMark mark; local
700 // unforwarding markOops. It then restores any preserved mark oops,
722 markOop mark = _preserved_mark_stack.pop(); local
723 obj->set_mark(mark);
726 // Clear the preserved mark and oop stack caches.
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp141 // We preserve the mark which should be replaced at the end and the location
144 void MarkSweep::preserve_mark(oop obj, markOop mark) { argument
150 _preserved_marks[_preserved_count++].init(obj, mark);
152 _preserved_mark_stack.push(mark);
196 markOop mark = _preserved_mark_stack.pop(); local
197 obj->set_mark(mark);
H A DmarkSweep.hpp42 // MarkSweep takes care of global mark-compact garbage collection for a
134 // Space for storing/restoring mark word
207 // Check mark and maybe push on marking stack
213 static void preserve_mark(oop p, markOop mark);
214 // Save the mark word so it can be restored later
256 void init(oop obj, markOop mark) { argument
258 _mark = mark;
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java560 * 2. mark the key so that incoming data is to be consumed and discarded
697 public synchronized void mark (int readlimit) { method in class:HttpServer.NioInputStream
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java313 * 2. mark the key so that incoming data is to be consumed and discarded
440 public synchronized void mark (int readlimit) { method in class:TunnelProxy.NioInputStream
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java80 * Also used to mark deleted entries in the table.
205 * Enter symbol sym in this scope, but mark that it comes from
597 private int mark = 0; field in class:Scope.CompoundScope
607 mark++;
615 mark++;
622 mark++;
629 return mark;
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.cpp403 // store the forwarding pointer into the mark word
406 assert(q->is_gc_marked(), "encoding the pointer should preserve the mark");
408 // if the object isn't moving we can just set the mark to the default
409 // mark and handle it specially later on.
432 oop(q)->set_mark(oop(q)->mark()->set_marked());
741 void ContiguousSpace::object_iterate_from(WaterMark mark, ObjectClosure* blk) { argument
742 assert(mark.space() == this, "Mark does not match space");
743 HeapWord* p = mark.point();
771 assert(p != NULL, "expected saved mark"); \
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp609 // mark this block (special treatment when block order is computed)
694 void BlockBegin::iterate_preorder(boolArray& mark, BlockClosure* closure) { argument
695 if (!mark.at(block_id())) {
696 mark.at_put(block_id(), true);
699 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_preorder(mark, closure); }
700 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_preorder(mark, closure); }
705 void BlockBegin::iterate_postorder(boolArray& mark, BlockClosure* closure) { argument
706 if (!mark.at(block_id())) {
707 mark.at_put(block_id(), true);
709 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_postorder(mark, closur
[all...]

Completed in 5026 milliseconds

123456