Searched refs:dirty (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/java/rmi/dgc/
H A DDGC.java33 * methods: dirty and clean. A dirty call is made when a remote
37 * dirty call must schedule a strong clean call so that the call's
43 * dirty call is received. It is the client's responsibility to renew
44 * the leases, by making additional dirty calls, on the remote
55 * The dirty call requests leases for the remote object references
75 * The dirty call returns a Lease object that contains the VMID
82 * A client VM need only make one initial dirty call for each
85 * make a dirty call to renew leases on remote references before
94 * @throws RemoteException if dirty cal
96 Lease dirty(ObjID[] ids, long sequenceNum, Lease lease) method in interface:DGC
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Cursor.h62 if (dirty) {
92 BOOL dirty; member in class:AwtCursor
H A Dawt_Cursor.cpp63 custom = dirty = FALSE;
81 dirty = FALSE;
253 if (!dirty) {
277 dirty = FALSE;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftReverb.java205 private boolean dirty = true; field in class:SoftReverb
412 dirty = true;
421 dirty = true;
430 dirty = true;
438 dirty = true;
447 dirty = true;
455 dirty = true;
459 dirty = true;
467 if (dirty) {
468 dirty
[all...]
H A DSoftChorus.java182 private boolean dirty = true; field in class:SoftChorus
253 dirty = true;
257 dirty = true;
261 dirty = true;
267 dirty = true;
275 if (dirty) {
276 dirty = false;
H A DSoftFilter.java86 private boolean dirty = true; field in class:SoftFilter
90 dirty = true;
97 dirty = true;
104 dirty = true;
108 dirty = true;
152 if (dirty) {
154 dirty = false;
417 if (dirty) {
419 dirty = false;
546 if (dirty) {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java161 * True if we're in the process of painting the dirty regions. This is
383 * If <i>c</i> already has a dirty region, the rectangle <i>(x,y,w,h)</i>
400 // Component was already marked as dirty, region has been
451 * If <i>c</i> already has a dirty region, the rectangle <i>(x,y,w,h)</i>
516 Rectangle dirty = hws.get(hw);
518 addDirtyRegion((Window)hw, dirty.x, dirty.y,
519 dirty.width, dirty.height);
522 addDirtyRegion((Applet)hw, dirty
[all...]
H A DJViewport.java454 // what is now a dirty region and the repaint is
1091 Rectangle dirty = rm.getDirtyRegion(jview);
1092 if (dirty == null || !dirty.contains(jview.getVisibleRect())) {
1096 flushViewDirtyRegion(g, dirty);
1113 // The visible region is dirty, no point in doing copyArea
1490 * If the repaint manager has a dirty region for the view, the view is
1495 private void flushViewDirtyRegion(Graphics g, Rectangle dirty) { argument
1497 if(dirty != null && dirty
[all...]
H A DJTable.java4176 Rectangle dirty = getCellRect(viewIndex, columnViewIndex,
4178 int x = dirty.x;
4179 int w = dirty.width;
4184 repaint(x, dirty.y, w, dirty.height);
4435 // Now adjust the height of the dirty region according to the value of "end".
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameBorder.java392 final Object dirty = frame.getClientProperty("windowModified");
393 if (dirty == null || dirty == Boolean.FALSE) return false;
444 final boolean dirty = isDirty(frame);
446 paintButton(g, frame, x, y, kCloseButton, buttonPressedIndex, overButton, frame.isClosable(), generalActive, rollover, dirty);
455 public void paintButton(final Graphics g, final JInternalFrame frame, final int x, final int y, final int buttonType, final int buttonPressedIndex, final boolean overButton, final boolean enabled, final boolean active, final boolean anyRollover, final boolean dirty) { argument
458 widgetPainter.state.set(dirty ? BooleanValue.YES : BooleanValue.NO);
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemmgr.c164 boolean dirty; /* do current buffer contents need written? */ member in struct:jvirt_sarray_control
180 boolean dirty; /* do current buffer contents need written? */ member in struct:jvirt_barray_control
663 sptr->dirty = FALSE;
687 bptr->dirty = FALSE;
781 if (ptr->dirty) {
783 ptr->dirty = FALSE;
836 /* Flag the buffer dirty if caller will write in it */
838 ptr->dirty = TRUE;
866 if (ptr->dirty) {
868 ptr->dirty
[all...]
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java185 transient private boolean dirty = false; field in class:ZoneInfo
431 dirty = true;
452 return dirty;
856 // been mutated. So it should always be marked as `dirty'.
857 dirty = true;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DClusterNode.java51 private boolean dirty; field in class:ClusterNode
210 dirty = b;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.inline.hpp134 ((CardTableModRefBS*)_g1h->barrier_set())->dirty(mr);
H A DheapRegion.cpp150 const jbyte dirty = CardTableModRefBS::dirty_card_val(); local
156 cv_field == dirty
157 : cv_obj == dirty || cv_field == dirty));
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DDGCImpl.java106 * The dirty call adds the VMID "vmid" to the set of clients
108 * id. The long "sequenceNum" is used to detect late dirty calls. If
113 * The client must call the "dirty" method to renew the lease
118 public Lease dirty(ObjID[] ids, long sequenceNum, Lease lease) { method in class:DGCImpl
185 * failed "dirty" call, thus the sequence number for the VMID needs
H A DDGCClient.java59 * a "dirty" call is made to the server-side distributed garbage
64 * "dirty" calls to renew its lease.
104 /** minimum retry count for dirty calls that fail */
143 * Get the next sequence number to be used for a dirty or clean
180 /** set of RefEntry instances from last (failed) dirty call */
190 /** count of recent dirty calls that have failed */
192 /** absolute time of first recent failed dirty call */
194 /** (average) elapsed time for recent failed dirty calls */
266 Set<RefEntry> refsToDirty = null; // entries for refs needing dirty
267 long sequenceNum; // sequence number for dirty cal
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.hpp41 // Any MemRegionClosures used to scan dirty cards should take these
78 // dirty and precleaned are equivalent wrt younger_refs_iter.
90 // Returns "true" iff the value "cv" may have represented a dirty card at
173 // region mr in the given space and apply cl to any dirty sub-regions
179 // worker threads are available, and clear the dirty cards as it
406 void dirty(MemRegion mr);
415 // marking, where a dirty card may cause scanning, and summarization
430 // Apply closure "cl" to the dirty cards containing some part of
435 // of dirty cards lying completely within MemRegion mr.
H A DcardTableModRefBS.cpp407 the "dirty -> dirty and claimed" transition is checked for in
419 assert(val != dirty_card_val(), "Shouldn't claim a dirty card");
507 // do for us): clear_cl here does the work of finding contiguous dirty ranges
521 // accomplish dirty card iteration in parallel. The
522 // iterator itself does not clear the dirty cards, or
539 // Should the next card be included in this range of dirty cards.
600 void CardTableModRefBS::dirty(MemRegion mr) { function in class:CardTableModRefBS
607 // iterates over dirty cards ranges in increasing address order.
620 // Accumulate maximal dirty car
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java261 Rectangle dirty = first.union(last);
262 table.repaint(dirty);

Completed in 111 milliseconds