Searched defs:marked (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java224 public boolean marked = false; // Marked -> refs > 0 unless ref was a target. field in class:XMLEncoder.ValueData
351 // for example, come from resource bundles should still be marked.
360 if (d.marked) {
363 d.marked = true;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DDefaultParticleBinder.java230 * This method shall be called for each marked particle.
326 /** All marked particles. */
339 /** Returns true if a particle is marked. */
340 private boolean marked( XSParticle p ) { method in class:DefaultParticleBinder.Builder
351 if(marked(p)) {
357 // repeated model groups should have been marked already
369 // because the corresponding particle must be marked.
374 // because the corresponding particle must be marked.
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java411 boolean marked; field in class:HttpServer.NioInputStream
422 closed = marked = reset = false;
457 if (marked) { /* copy into markBuf */
461 marked = false;
510 marked = true;
517 if (!marked)
518 throw new IOException ("Stream not marked");
519 marked = false;
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DRequest.java229 boolean marked; field in class:Request.ReadStream
242 closed = marked = reset = false;
297 if (marked) { /* copy into markBuf */
301 marked = false;
339 marked = true;
346 if (!marked)
347 throw new IOException ("Stream not marked");
348 marked = false;
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java591 boolean marked; field in class:HttpServer.NioInputStream
604 closed = marked = reset = false;
639 if (marked) { /* copy into markBuf */
643 marked = false;
702 marked = true;
709 if (!marked)
710 throw new IOException ("Stream not marked");
711 marked = false;
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java346 boolean marked; field in class:TunnelProxy.NioInputStream
357 closed = marked = reset = false;
392 if (marked) { /* copy into markBuf */
396 marked = false;
445 marked = true;
452 if (!marked)
453 throw new IOException ("Stream not marked");
454 marked = false;
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.cpp1227 // At least one nmethod has been marked for deoptimization
1251 int marked = 0; local
1255 marked = call_site_klass->mark_dependent_nmethods(changes);
1257 if (marked > 0) {
1258 // At least one nmethod has been marked for deoptimization
1277 // At least one nmethod has been marked for deoptimization
1286 // Deoptimize all activations depending on marked nmethods
1307 // At least one nmethod has been marked for deoptimization
1316 // Deoptimize all activations depending on marked nmethods
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java2953 private boolean marked = false; field in class:HttpURLConnection.HttpInputStream
2978 * the last marked position so that subsequent reads re-read the same
2996 marked = true;
3017 * @exception IOException if the stream has not been marked or if the
3026 marked = false;
3069 if (marked) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.cpp1306 // Find the first marked object at or after "start".
1332 // Add the size of this object to the number of marked bytes.
1335 // Find the next marked object after this one.
1365 // Set the marked bytes for the current region so that
1431 // Verify the marked bytes for this region.
1435 // We're not OK if expected marked bytes > actual marked bytes. It means
1439 gclog_or_tty->print_cr("Region %u: marked bytes mismatch: "
2552 bool marked = _g1h->is_marked(obj, _vo); local
2556 if (marked) {
2589 bool marked = _g1h->is_marked(o, _vo); local
[all...]

Completed in 108 milliseconds