Searched refs:force (Results 26 - 50 of 73) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1AllocRegion.cpp114 bool force) {
119 HeapRegion* new_alloc_region = allocate_new_region(word_size, force);
113 new_alloc_region_and_allocate(size_t word_size, bool force) argument
H A Dg1CollectedHeap.hpp159 virtual HeapRegion* allocate_new_region(size_t word_size, bool force);
181 virtual HeapRegion* allocate_new_region(size_t word_size, bool force);
190 virtual HeapRegion* allocate_new_region(size_t word_size, bool force);
622 HeapRegion* new_mutator_alloc_region(size_t word_size, bool force);
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DRMIExporterTest.java75 public boolean unexportObject(Remote obj, boolean force) argument
85 return UnicastRemoteObject.unexportObject(obj, force);
/openjdk7/jdk/src/share/classes/java/nio/
H A DMappedByteBuffer.java199 public final MappedByteBuffer force() { method in class:MappedByteBuffer
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DMakefile91 $(JAVA_HOME)/bin/javah -force Launcher
/openjdk7/jdk/test/javax/sound/sampled/DataLine/
H A DDataLine_ArrayIndexOutOfBounds.java111 // force stop/close the line
112 public void force() { method in class:DataLine_ArrayIndexOutOfBounds.AsyncLineStopper
180 lineStopper.force();
219 lineStopper.force();
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollArrayWrapper.java169 * unless {@code force} is {@code true}.
171 private void setUpdateEvents(int fd, byte events, boolean force) { argument
173 if ((eventsLow[fd] != KILLED) || force) {
178 if ((eventsHigh.get(key) != KILLED) || force) {
223 // force the initial update events to 0 as it may be KILLED by a
H A DFileDispatcherImpl.java75 int force(FileDescriptor fd, boolean metaData) throws IOException { method in class:FileDispatcherImpl
/openjdk7/jdk/test/javax/management/mxbean/
H A DMiscTest.java74 public void close(boolean force); argument
106 public void close(boolean force) { argument
151 public void close(boolean force) { argument
264 public void close(boolean force) { argument
314 public void close(boolean force) { argument
371 public void close(boolean force) { argument
421 public void close(boolean force) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DGen.java132 protected boolean force = false; field in class:Gen
135 force = state;
190 if (force) {
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousFileChannel.java63 * <li><p> Updates made to a file may be {@link #force <i>forced
370 * <p> This method is only guaranteed to force changes that were made to
374 * If {@code true} then this method is required to force changes
376 * storage; otherwise, it need only force content changes to be
385 public abstract void force(boolean metaData) throws IOException; method in class:AsynchronousFileChannel
H A DFileChannel.java69 * <li><p> Updates made to a file may be {@link #force <i>forced
533 * <p> This method is only guaranteed to force changes that were made to
535 * may not force changes that were made by modifying the content of a
538 * MappedByteBuffer#force force} method of the mapped byte buffer will
539 * force changes made to the buffer's content to be written. </p>
542 * If <tt>true</tt> then this method is required to force changes
544 * storage; otherwise, it need only force content changes to be
553 public abstract void force(boolean metaData) throws IOException; method in class:FileChannel
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java94 public MarshalledObject activate(ActivationID id, boolean force) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DAnyTypeBeanInfo.java144 context.force(a.getValue(), a.getLocalName());
152 context.force(a.getValue(), "");
H A DContentHandlerAdaptor.java100 serializer.getNamespaceContext().force(
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DObjectTable.java133 * If the force parameter is true, the object is forcibly unexported
135 * remote object still has calls in progress. If the force
140 * @param force if true, unexports the object even if there are
147 public static boolean unexportObject(Remote obj, boolean force) argument
155 if (target.unexport(force)) {
H A DTarget.java354 * following conditions exist: a) the force parameter is true,
359 synchronized boolean unexport(boolean force) { argument
361 if ((force == true) || (callCount == 0) || (disp == null)) {
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DResultLogManager.java267 * Creation of a new file can be forced by passing force=true.
270 boolean force)
274 if ((force==false) && (logCount < maxRecords))
381 // simply force the creation of a new log file.
269 checkLogFile(String basename, long maxRecords, boolean force) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuUI.java231 private boolean force=false; field in class:BasicMenuUI.Actions
236 this.force = shouldForce;
256 if(force) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthComboBoxUI.java392 boolean force = forceOpaque && c instanceof JComponent;
393 if (force) {
407 if (force) {
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.hpp163 // The update can be forced by setting the force parameter equal to true.
164 bool update_layout(bool force);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DFileDispatcherImpl.java87 int force(FileDescriptor fd, boolean metaData) throws IOException { method in class:FileDispatcherImpl
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSimpleAsynchronousFileChannelImpl.java156 public void force(boolean metaData) throws IOException { method in class:SimpleAsynchronousFileChannelImpl
163 n = nd.force(fdObj, metaData);
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java175 int force = nRemaining <= minRun ? nRemaining : minRun;
176 binarySort(a, lo, lo + force, lo + runLen);
177 runLen = force;
H A DTimSort.java207 int force = nRemaining <= minRun ? nRemaining : minRun;
208 binarySort(a, lo, lo + force, lo + runLen, c);
209 runLen = force;

Completed in 256 milliseconds

123