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

123

/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp120 void verify(outputStream* st, bool force = false);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java402 boolean force)
406 return getGroupEntry(id).activate(id, force);
1112 boolean force)
1130 if (!force && objEntry.stub != null) {
1141 return objEntry.activate(id, force, inst);
1444 boolean force,
1451 } else if (!force && nstub != null) {
401 activate(ActivationID id, boolean force) argument
1111 activate(ActivationID id, boolean force) argument
1443 activate(ActivationID id, boolean force, ActivationInstantiator inst) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.java65 // Used for force/truncate/size methods
202 public void force(boolean metaData) throws IOException { method in class:WindowsAsynchronousFileChannelImpl
205 nd.force(fdObj, metaData);
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java195 public boolean unexportObject(Remote obj, boolean force) argument
197 return UnicastRemoteObject.unexportObject(obj, force);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DNamespaceContextImpl.java225 public int force(@NotNull String uri, @NotNull String prefix) { method in class:NamespaceContextImpl
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontconfig.h491 FcBool force);
499 FcBool force);
508 FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java211 new Option(false, "-force") {
213 task.force = true;
500 g.setForce(force);
665 boolean force; field in class:JavahTask
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c124 char * force; local
136 force = getenv("J2D_PIXMAPS");
137 if (force != NULL) {
138 if (useMitShmPixmaps && (strcmp(force, "shared") == 0)) {
140 } else if (strcmp(force, "server") == 0) {
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.cpp227 // The update can be forced by setting the force parameter equal to true.
228 bool MutableNUMASpace::update_layout(bool force) { argument
231 if (force || changed) {
/openjdk7/hotspot/make/windows/
H A Dcreate.bat156 REM force regneration of ProjectFile
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java366 public void force(boolean metaData) throws IOException { method in class:FileChannelImpl
376 rv = nd.force(fd, metaData);
877 // so force gc and re-attempt map
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp6359 bool force) {
6361 assert(!force || g1_policy()->can_expand_young_list(),
6362 "if force is true we should be able to expand the young list");
6364 if (force || !young_list_full) {
6391 bool force) {
6392 return _g1h->new_mutator_alloc_region(word_size, force);
6462 bool force) {
6463 assert(!force, "not supported for GC alloc regions");
6474 bool force) {
6475 assert(!force, "no
6358 new_mutator_alloc_region(size_t word_size, bool force) argument
6390 allocate_new_region(size_t word_size, bool force) argument
6461 allocate_new_region(size_t word_size, bool force) argument
6473 allocate_new_region(size_t word_size, bool force) argument
[all...]
H A DconcurrentMark.hpp766 // unless the force parameter is true.
767 void update_g1_committed(bool force = false);
H A DconcurrentMark.cpp348 // force the caller to bail out of their loop.
603 void ConcurrentMark::update_g1_committed(bool force) { argument
606 if (!concurrent_marking_in_progress() && !force) return;
800 // If we force an overflow during remark, the remark operation will
802 // force an oveflow during remark we'll never actually complete the
2726 // claim_region() and a humongous object allocation might force us
3118 // Clear all marks to force marking thread to do nothing
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp628 static bool check_heap(bool force = false); // verify C heap integrity
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java135 fc.force(true);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DXMLSerializer.java270 int idx = nsContext.force(nsUri, forcedPrefix);
948 * True to force inlining.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java2286 * Modify the augmentations. Add an [included] infoset item, if <code>force</code>
2289 * @param force whether to force modification
2294 boolean force) {
2295 if (force || isTopLevelIncludedItem()) {
2292 modifyAugmentations( Augmentations augs, boolean force) argument
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java760 public void force(boolean metaData)
763 fch.force(metaData);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4871 bool os::check_heap(bool force) { argument
4872 if (++mallocDebugCounter < MallocVerifyStart && !force) return true;
4873 if (++mallocDebugIntervalCounter >= MallocVerifyInterval || force) {
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp862 // page to force a page fault. Bsd kernel will then automatically expand the
1238 // see notes about MAP_GROWSDOWN. Here we try to force kernel to map
4670 // alignment when doing symbol lookup. To work around this, we force early
5068 bool os::check_heap(bool force) { argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp736 // page to force a page fault. Linux kernel will then automatically expand the
1048 // see notes about MAP_GROWSDOWN. Here we try to force kernel to map
4855 bool os::check_heap(bool force) { argument
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5551 bool os::check_heap(bool force) { return true; } argument

Completed in 170 milliseconds

123