Searched defs:options (Results 1 - 25 of 222) sorted by relevance

123456789

/openjdk7/jdk/test/java/lang/instrument/BootClassPath/
H A DAgent.java35 public static void premain(String options, Instrumentation ins) throws Exception { argument
/openjdk7/jdk/test/java/lang/instrument/
H A DInstrumentationHandoff.java47 premain(String options, Instrumentation inst) argument
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DCommandLineParser.java38 public void setOptionMap(String options) { argument
39 // Convert options string into optLines dictionary.
42 for (String optline : options.split("\n")) {
79 * Remove a set of command-line options from args,
94 // Multiple trips per option only if several options per argument.
/openjdk7/jdk/test/javax/security/auth/login/LoginContext/
H A DResetModule.java33 Map<String,?> ss, Map<String,?> options) {
32 initialize(Subject s, CallbackHandler h, Map<String,?> ss, Map<String,?> options) argument
H A DDefaultHandlerModule.java37 private Map options; field in class:DefaultHandlerModule
44 Map<String,?> sharedState, Map<String,?> options) {
49 this.options = options;
43 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
H A DModuleSubjectModule.java37 private Map options; field in class:ModuleSubjectModule
47 Map<String,?> sharedState, Map<String,?> options) {
52 this.options = options;
46 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
/openjdk7/jdk/src/share/npt/
H A Dnpt.c46 nptInitialize(NptEnv **pnpt, char *nptVersion, char *options) argument
63 if ( options != NULL ) {
64 npt->options = strdup(options);
82 nptTerminate(NptEnv* npt, char *options) argument
85 /* FIXUP: options? Check memory or something? */
86 if ( npt->options != NULL ) {
87 (void)free(npt->options);
/openjdk7/langtools/test/tools/javac/api/6410643/
H A DT6410643.java39 void testGetTask(Iterable<String> options, argument
/openjdk7/jdk/src/share/classes/javax/security/auth/spi/
H A DLoginModule.java52 * <code>LoginModule</code> state, and LoginModule-specific options.
66 * <p> The LoginModule-specific options represent the options
69 * The options are defined by the <code>LoginModule</code> itself
71 * <code>LoginModule</code> may define options to support debugging/testing
74 * stores the options as a <code>Map</code> so that the values may
76 * of options a <code>LoginModule</code> chooses to define.
140 * <code>options</code> parameters, they can be ignored.
152 * @param options options specifie
156 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DCopyMoveHelper.java50 static CopyOptions parse(CopyOption... options) { argument
52 for (CopyOption option: options) {
75 * Converts the given array of options for moving a file to options suitable
78 private static CopyOption[] convertMoveToCopyOptions(CopyOption... options) argument
81 int len = options.length;
84 CopyOption option = options[i];
101 CopyOption... options)
104 CopyOptions opts = CopyOptions.parse(options);
155 CopyOption... options) throw
100 copyToForeignTarget(Path source, Path target, CopyOption... options) argument
154 moveToForeignTarget(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DGeneratorUtil.java38 Options options,
42 getLoadableClassName(className, options.getClassLoader());
37 classExists( Options options, String className) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DBadCommandLineException.java34 private Options options; field in class:BadCommandLineException
49 assert this.options==null;
50 this.options = opt;
58 return options;
H A DFilerCodeWriter.java47 public FilerCodeWriter(File outDir, WsgenOptions options) throws IOException { argument
48 super(outDir, options);
49 this.filer = options.filer;
H A DWSCodeWriter.java42 private final Options options; field in class:WSCodeWriter
44 public WSCodeWriter( File outDir, Options options) throws IOException { argument
46 this.options = options;
52 options.addGeneratedFile(f);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DBadCommandLineException.java34 private Options options; field in class:BadCommandLineException
49 assert this.options==null;
50 this.options = opt;
57 return options;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java49 CopyOption... options)
52 // map options
57 for (CopyOption option: options) {
258 static void move(WindowsPath source, WindowsPath target, CopyOption... options) argument
261 // map options
264 for (CopyOption option: options) {
380 // first try MoveFileEx (no options). If target is on same volume then
47 copy(final WindowsPath source, final WindowsPath target, CopyOption... options) argument
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKinit.java51 private KinitOptions options; field in class:Kinit
136 * @param args array of ticket request options.
137 * Avaiable options are: -f, -p, -c, principal, password.
145 options = new KinitOptions();
147 options = new KinitOptions(args);
150 PrincipalName principal = options.getPrincipal();
158 char[] psswd = options.password;
159 boolean useKeytab = options.useKeytabFile();
183 String ktabName = options.keytabFileName();
197 setOptions(KDCOptions.FORWARDABLE, options
[all...]
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.java42 private static void launch(String className, String options[], String args[], int fd) throws IOException { argument
44 int options_len = (options == null) ? 0 : options.length;
47 // java [-options] class [args...]
56 cmdarray[pos++] = options[i];
70 public static SocketChannel launchWithSocketChannel(String className, String options[], String args[]) throws IOException { argument
77 launch(className, options, args, Util.getFD(sc2));
97 public static SocketChannel launchWithServerSocketChannel(String className, String options[], String args[]) argument
103 launch(className, options, args, Util.getFD(ssc));
125 public static DatagramChannel launchWithDatagramChannel(String className, String options[], Strin argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DDoclet.java34 * description</a>. If the doclet takes command line options,
64 * Check for doclet-added options. Returns the number of
68 * This method is required if the doclet contains any options.
81 * Check that options have the correct arguments.
91 * @return true if the options are valid.
93 public static boolean validOptions(String options[][], argument
95 return true; // default is options are valid
H A DRootDoc.java33 * packages, classes and options specified by the user.
41 * Command line options.
49 * options()[0][0] = "-foo"
50 * options()[0][1] = "this"
51 * options()[0][2] = "that"
52 * options()[1][0] = "-bar"
53 * options()[1][1] = "other"</pre>
57 String[][] options(); method in interface:RootDoc
63 * If <code>-subpackages</code> and <code>-exclude</code> options
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DRoundStateImpl.java41 Map<String,String> options) {
53 !(classFilesCreated && options.keySet().contains("-XclassesAsDecls")) );
38 RoundStateImpl(boolean errorRaised, boolean sourceFilesCreated, boolean classFilesCreated, Map<String,String> options) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/standard/
H A DStandard.java42 public static boolean validOptions(String[][] options, argument
44 return HtmlDoclet.validOptions(options, reporter);
/openjdk7/langtools/test/tools/javac/Diagnostics/7010608/
H A DTest.java56 void test(List<String> options, String expect) throws Exception { argument
57 System.err.println("test: " + options);
63 CompilationTask task = javac.getTask(pw, null, null, options, null, files);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbAsReq.java53 KDCOptions options, // ok, new KDCOptions()
64 if (options == null) {
65 options = new KDCOptions();
70 if (options.get(KDCOptions.FORWARDED) ||
71 options.get(KDCOptions.PROXY) ||
72 options.get(KDCOptions.ENC_TKT_IN_SKEY) ||
73 options.get(KDCOptions.RENEW) ||
74 options.get(KDCOptions.VALIDATE)) {
79 if (options.get(KDCOptions.POSTDATED)) {
85 if (options
52 KrbAsReq(EncryptionKey pakey, KDCOptions options, PrincipalName cname, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses ) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DTicketFlags.java113 public boolean match(LoginOptions options) { argument
116 if (this.get(Krb5.TKT_OPTS_FORWARDABLE) == (options.get(KDCOptions.FORWARDABLE))) {
117 if (this.get(Krb5.TKT_OPTS_PROXIABLE) == (options.get(KDCOptions.PROXIABLE))) {
118 if (this.get(Krb5.TKT_OPTS_RENEWABLE) == (options.get(KDCOptions.RENEWABLE))) {

Completed in 249 milliseconds

123456789