Searched refs:sync (Results 51 - 75 of 85) sorted by relevance

1234

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java614 public void sync() { method in class:WToolkit
618 OGLRenderQueue.sync();
620 D3DRenderQueue.sync();
/openjdk7/jdk/src/solaris/classes/java/util/prefs/
H A DFileSystemPreferences.java44 * (The file lock is obtained only for sync(), flush() and removeNode().)
273 * the sync operation, changes are first saved into this file, and then
318 * corresponding disk file (prefsFile) by the sync operation. The initial
352 * is sync'ed by overwriting our prefsCache with the preference map last
407 * next sync.
429 // Add periodic timer task to periodically sync cached prefs
509 // These 2 things guarantee node will get wrtten at next flush/sync
717 public synchronized void sync() throws BackingStoreException { method in class:FileSystemPreferences
747 super.sync();
789 // playback any local mods since last sync
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncFactory.java124 * #Default JDBC RowSet sync providers listing
262 * Internal sync object used to maintain the SPI as a singleton
780 SyncProvider sync = (SyncProvider) elementObj;
782 sync.getProviderID());
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s245 BLD_A0 ! block load and sync data from BLD_B0
249 BLD_B0 ! block load and sync data from BLD_A0
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java316 public void sync() { method in class:HToolkit
H A DHeadlessToolkit.java336 public void sync() { method in class:HeadlessToolkit
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferences.java1055 * @see #sync()
1062 * store (from any VM) prior to the <tt>sync</tt> invocation. As a
1074 public abstract void sync() throws BackingStoreException; method in class:Preferences
H A DAbstractPreferences.java75 * {@link Preferences#sync()}. Generally speaking, these SPI methods should not
81 * of <tt>flush()</tt> and <tt>sync</tt> should return <tt>false</tt>, as
1303 * Implements the <tt>sync</tt> method as per the specification in
1304 * {@link Preferences#sync()}.
1322 public void sync() throws BackingStoreException { method in class:AbstractPreferences
1349 * sync(), rather than merely overriding this method.
1352 * will propagate out beyond the enclosing {@link #sync()} invocation.
/openjdk7/jdk/src/share/classes/java/awt/
H A DRobot.java437 // need to sync the toolkit prior to grabbing the pixels since in some
439 Toolkit.getDefaultToolkit().sync();
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.hpp282 void sync();
/openjdk7/hotspot/src/share/vm/utilities/
H A Dstack.inline.hpp259 void StackIterator<E, F>::sync() function in class:StackIterator
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/
H A DTestDialogTypeAhead.java195 Toolkit.getDefaultToolkit().sync();
/openjdk7/jdk/test/java/awt/Toolkit/Headless/ExceptionContract/
H A DExceptionContract.java252 public void sync() { method in class:ExceptionContract._Toolkit
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/
H A DSimplePrimQuality.java171 Toolkit.getDefaultToolkit().sync();
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js393 * can be called only within a sync method
406 * can be called only within a sync method
419 * can be called only within a sync method
509 Function.prototype.sync = function (lock) {
595 __put__: sync(function(name, value) {
/openjdk7/hotspot/src/share/vm/services/
H A DmemTracker.hpp55 // memory recorders at NMT sync point
351 // sync is called within global safepoint to synchronize nmt data
352 static void sync();
389 // when they are overflowed or collected at nmt sync point.
476 // how many safepoints we skipped without entering sync point
H A DmemTracker.cpp43 // walk all 'known' threads at NMT sync point, and collect their recorders
158 * 3. At sync point, MemTracker does final cleanup, before sets memory
375 * 5. call worker's sync
382 void MemTracker::sync() { function in class:MemTracker
388 // sync point in these cases, which can potentially exhaust generation buffer.
389 // Here is the factots to determine if we should go into sync point:
392 // 3. how many safepoints we already skipped sync point
408 // it should guarantee that NMT is fully sync-ed.
411 // We can NOT execute NMT sync-point if there are pending tracking ops.
439 assert(SequenceGenerator::peek() == 1, "Should not have memory activities during sync
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java168 ((FileOutputStream) opendedFile).getFD().sync() ;
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/SourceClippingBlitTest/
H A DSourceClippingBlitTest.java206 Toolkit.getDefaultToolkit().sync();
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c73 jboolean sync = JNI_FALSE; local
532 sync = JNI_TRUE;
706 if (sync) {
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java49 Toolkit.getDefaultToolkit().sync();
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java201 Toolkit.getDefaultToolkit().sync();
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java66 To keep sources in sync, the remainder of this source file is
68 name and changing ints related with sync state to longs. Please
188 * It will not be used as a sync queue node
205 * The field is initialized to 0 for normal sync nodes, and
1403 * a condition queue, is now waiting to reacquire on sync queue.
1424 * Returns true if node is on sync queue by searching backwards from tail.
1440 * Transfers a node from a condition queue onto sync queue.
1467 * Transfers node, if necessary, to sync queue after a cancelled
1494 * @return previous sync state
1979 final boolean isOwnedBy(AbstractQueuedLongSynchronizer sync) { argument
[all...]
H A DAbstractQueuedSynchronizer.java237 * // The sync object does all the hard work. We just forward to it.
238 * private final Sync sync = new Sync();
240 * public void lock() { sync.acquire(1); }
241 * public boolean tryLock() { return sync.tryAcquire(1); }
242 * public void unlock() { sync.release(1); }
243 * public Condition newCondition() { return sync.newCondition(); }
244 * public boolean isLocked() { return sync.isHeldExclusively(); }
245 * public boolean hasQueuedThreads() { return sync.hasQueuedThreads(); }
247 * sync.acquireInterruptibly(1);
251 * return sync
2200 isOwnedBy(AbstractQueuedSynchronizer sync) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DLWCToolkit.java357 public void sync() { method in class:LWCToolkit

Completed in 148 milliseconds

1234