Searched refs:option (Results 26 - 50 of 130) sorted by relevance

123456

/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dclass_loading_stat.d47 #pragma D option quiet
48 #pragma D option destructive
49 #pragma D option defaultargs
50 #pragma D option aggrate=100ms
H A Dhotspot_calls_tree.d46 * need to turn on the ExtendedDTraceProbes VM option. You can either
47 * start the application with -XX:+ExtendedDTraceProbes option or use the
54 #pragma D option quiet
55 #pragma D option destructive
56 #pragma D option defaultargs
57 #pragma D option aggrate=100ms
H A Dmonitors.d46 * to turn on the ExtendedDTraceProbes VM option.
48 * option or use the jinfo command to enable it at runtime as follows:
54 #pragma D option quiet
55 #pragma D option destructive
56 #pragma D option defaultargs
57 #pragma D option aggrate=100ms
H A Dmethod_invocation_stat.d47 * option.
49 * option or use the jinfo command to enable it at runtime as follows:
55 #pragma D option quiet
56 #pragma D option destructive
57 #pragma D option defaultargs
58 #pragma D option bufsize=16m
59 #pragma D option aggrate=100ms
H A Dmethod_invocation_stat_filter.d51 * option.
53 * option or use the jinfo command to enable it at runtime as follows:
59 #pragma D option quiet
60 #pragma D option destructive
61 #pragma D option defaultargs
62 #pragma D option bufsize=16m
63 #pragma D option aggrate=100ms
H A Dgc_time_stat.d47 #pragma D option quiet
48 #pragma D option destructive
49 #pragma D option defaultargs
50 #pragma D option aggrate=100ms
/openjdk7/langtools/test/tools/javah/
H A DVersionTest.java46 static void test(String option, String regex) { argument
49 String[] args = { option };
/openjdk7/langtools/test/tools/apt/Options/
H A Doptions.sh44 JARCP=option.jar
75 ${JAR} cf0 option.jar OptionChecker*.class META-INF
/openjdk7/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DGetVMOption.java61 VMOption option = mbean.getVMOption(PRINT_GC_DETAILS);
62 if (!option.getValue().equalsIgnoreCase(EXPECTED_VALUE)) {
64 option.getValue() + " expected: " + EXPECTED_VALUE);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DUtil.java90 for (LinkOption option: options) {
91 if (option == LinkOption.NOFOLLOW_LINKS) {
93 } else if (option == null) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java111 /** This class represents an option recognized by the main program
114 /** Whether or not the option is used only aptOnly.
130 /** Suffix option (-foo=bar or -foo:bar)
149 /** Does this option take a (separate) operand?
155 /** Does argument string match option pattern?
174 /** Print a line of documentation describing this option, if non-standard.
178 /** Process the option (with arg). Return true if error detected.
180 boolean process(String option, String arg) { argument
181 options.put(option, arg);
185 /** Process the option (withou
187 process(String option) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java117 JavacOption option = sharedCompiler.getOption(name);
118 if (option == null || !match(kind, option.getKind()))
120 if ((args.length != 0) != option.hasArg())
122 if (option.hasArg()) {
123 if (option.process(null, name, arg)) // FIXME
126 if (option.process(null, name)) // FIXME
172 for (String option : options)
173 option.getClass(); // null check
235 JavacOption option
268 isSupportedOption(String option) argument
[all...]
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot_jni/
H A DCriticalSection_slow.d55 #pragma D option quiet
56 #pragma D option destructive
57 #pragma D option defaultargs
58 #pragma D option bufsize=16m
59 #pragma D option aggrate=100ms
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.hpp64 // Check to see if this method has option set for it
65 static bool has_option_string(methodHandle method, const char * option);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java229 LintCategory(String option) { argument
230 this(option, false);
233 LintCategory(String option, boolean hidden) { argument
234 this.option = option;
236 map.put(option, this);
239 static LintCategory get(String option) { argument
240 return map.get(option);
243 public final String option; field in class:Lint.LintCategory
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKDCOptions.java100 * <p> Various checks must be made before honoring an option. The restrictions
219 * @param option an option bit.
220 * @param value true if the option is selected, false if the option is not selected.
224 public void set(int option, boolean value) throws ArrayIndexOutOfBoundsException { argument
225 super.set(option, value);
231 * @param option an option bit.
232 * @return value true if the option i
237 get(int option) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java57 for (CopyOption option: options) {
58 if (option == StandardCopyOption.REPLACE_EXISTING) {
62 if (option == LinkOption.NOFOLLOW_LINKS) {
66 if (option == StandardCopyOption.COPY_ATTRIBUTES) {
70 if (option == ExtendedCopyOption.INTERRUPTIBLE) {
74 if (option == null)
76 throw new UnsupportedOperationException("Unsupported copy option");
264 for (CopyOption option: options) {
265 if (option == StandardCopyOption.ATOMIC_MOVE) {
269 if (option
[all...]
H A DWindowsChannelFactory.java86 for (OpenOption option: options) {
87 if (option instanceof StandardOpenOption) {
88 switch ((StandardOpenOption)option) {
103 if (option instanceof ExtendedOpenOption) {
104 switch ((ExtendedOpenOption)option) {
112 if (option == LinkOption.NOFOLLOW_LINKS) {
116 if (option == OPEN_REPARSE_POINT) {
120 if (option == null)
332 // ignore as sparse option is hint
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_md.h48 int md_recv(int f, char *buf, int len, int option);
49 int md_shutdown(int filedes, int option);
/openjdk7/langtools/test/tools/javap/
H A DT6824493.java69 void test(String option, String... expect) { argument
74 option,
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDebug.java108 * option is set. Set the prefix to be the same as option.
111 public static Debug getInstance(String option) argument
113 return getInstance(option, option);
118 * option is set. Set the prefix to be prefix.
120 public static Debug getInstance(String option, String prefix) argument
122 if (isOn(option)) {
133 * string "option".
135 public static boolean isOn(String option) argument
[all...]
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DReader.java84 String option = args[argc++];
88 if (option.equals("-only")) {
92 if (option.equals("-block")) {
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.java67 for (CopyOption option: options) {
68 if (option == StandardCopyOption.REPLACE_EXISTING) {
72 if (option == LinkOption.NOFOLLOW_LINKS) {
76 if (option == StandardCopyOption.COPY_ATTRIBUTES) {
85 if (option == ExtendedCopyOption.INTERRUPTIBLE) {
89 if (option == null)
91 throw new UnsupportedOperationException("Unsupported copy option");
98 for (CopyOption option: options) {
99 if (option == StandardCopyOption.ATOMIC_MOVE) {
103 if (option
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DCUPSfuncs.c321 ppd_option_t *option; local
343 option = j2d_ppdFindOption(ppd, "PageSize");
344 if (option != NULL && option->num_choices > 0) {
347 DPRINTF( "CUPSfuncs::option->num_choices %d\n", option->num_choices)
348 sizeArray = (*env)->NewFloatArray(env, option->num_choices*6);
358 for (i = 0; i<option->num_choices; i++) {
359 choice = (option->choices)+i;
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTool.java76 public int isSupportedOption(String option) { argument
79 if (options[i].matches(option))

Completed in 147 milliseconds

123456