Searched refs:headless (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/make/sun/headless/
H A DMakefile33 LIB_LOCATION = $(LIBDIR)/headless
35 LIB_LOCATION = $(LIBDIR)/$(LIBARCH)/headless
40 LIBRARY_OUTPUT = headless
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphicsEnvironment.java59 * The headless state of the Toolkit and GraphicsEnvironment
61 private static Boolean headless; field in class:GraphicsEnvironment
64 * The headless state assumed by default
144 * @return warning message if headless state is assumed by default;
149 if (headless == null) {
158 * @return the value of the property "java.awt.headless"
162 if (headless == null) {
166 String nm = System.getProperty("java.awt.headless");
171 headless = defaultHeadless = Boolean.FALSE;
177 headless
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Event.c32 #error This file should not be included in headless library
H A Dawt_Plugin.c27 #error This file should not be included in headless library
H A Drobot_common.c27 #error This file should not be included in headless library
H A DMouseInfo.c27 #error This file should not be included in headless library
H A Dawt_AWTEvent.c34 #error This file should not be included in headless library
H A Dawt_DrawingSurface.c27 #error This file should not be included in headless library
H A Dawt_Robot.c27 #error This file should not be included in headless library
H A Dawt_mgrsel.c27 #error This file should not be included in headless library
H A Dmulti_font.c31 #error This file should not be included in headless library
H A Dawt_util.c27 #error This file should not be included in headless library
/openjdk7/jdk/src/macosx/native/sun/awt/
H A Dawt.m152 // Returns true if java believes it is running headless
210 + (void)start:(BOOL)headless;
252 + (void)start:(BOOL)headless
268 NSString *msg = [NSString stringWithFormat:@"+[AWTStarter start headless:%d] { onMainThread:%d }", headless, onMainThread];
272 if (!headless)
290 [NSNumber numberWithBool: headless],
300 if (!headless && !onMainThread) {
315 if (!headless) {
332 BOOL headless
[all...]
/openjdk7/jdk/test/java/security/Security/ClassLoaderDeadlock/
H A DClassLoaderDeadlock.sh92 -Djava.awt.headless=true \
/openjdk7/jdk/make/common/
H A DDefs-embedded.gmk49 JRE_REDUCED_HEADLESS_IMAGE_DIR = $(ABS_OUTPUTDIR)/j2re-reduced-headless-image
H A DRelease-embedded.gmk31 reduced-image-jre reduced-headless-image-jre ::
35 images:: reduced-image-jre reduced-headless-image-jre
39 # Create the headless rt.jar
48 # headless JRE. If you want to remove most classes in a
83 # Create the headless rt.jar file list & non-class files list
90 # Create headless rt.jar
175 reduced-headless-image-jre:: $(RT_JAR) $(RESOURCES_JAR) $(BUILD_META_INDEX) $(HL_RT_JAR)
185 @# Replace the full rt.jar with the headless rt.jar
224 @# all done with JRE reduced headless image
233 .PHONY: reduced-image-jre reduced-headless
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DVersion.java.template92 /* Report that we're running headless if the property is true */
93 String headless = System.getProperty("java.awt.headless");
94 if ( (headless != null) && (headless.equalsIgnoreCase("true")) ) {
106 // embedded builds report headless state
107 ps.print(", headless");
/openjdk7/jdk/make/sun/
H A DMakefile57 HEADLESS_SUBDIR = headless
/openjdk7/jdk/make/sun/osxapp/
H A DMakefile102 $(BOOT_JAVA_CMD) -cp $(TEMPDIR_CLASSES) -Djava.awt.headless=true \
/openjdk7/jdk/make/sun/jawt/
H A DMakefile126 OTHER_LDLIBS = -L$(LIBDIR)/$(LIBARCH) -L$(OPENWIN_LIB) -L$(LIBDIR)/$(LIBARCH)/headless -lmawt -L/usr/openwin/sfw/lib$(ISA_DIR) -lXrender
134 OTHER_LDLIBS = -L$(LIBDIR)/$(LIBARCH) -lawt -L$(LIBDIR)/$(LIBARCH)/headless -lmawt
/openjdk7/jdk/make/common/shared/
H A DDefs-java.gmk69 # MMM: is headless option necessary?
71 JAVA_JVM_FLAGS = $(JAVA_HOTSPOT_DISABLE_PRINT_VMOPTIONS) -Djava.awt.headless=true
/openjdk7/jdk/make/sun/font/
H A DMakefile162 # Fontmanager is headless (independent of X/Motif)
191 # Note that on Solaris, fontmanager is built against the headless library.
192 LDFLAGS += -L$(LIBDIR)/$(LIBARCH)/headless
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java190 boolean headless = GraphicsEnvironment.isHeadless();
191 if (volatileImageBufferEnabled && headless) {
198 if (headless) {
/openjdk7/jdk/make/sun/awt/
H A DMakefile269 -Djava.awt.headless=true \
279 -Djava.awt.headless=true \
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp2807 // If we are running in a headless jre, force java.awt.headless property
2809 // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
2811 const char* headless = Arguments::get_property("java.awt.headless"); local
2812 if (headless == NULL) {
2815 if (!add_property("java.awt.headless=true")) {
2820 strcpy(buffer, "java.awt.headless=");

Completed in 82 milliseconds

12