Searched refs:options (Results 51 - 75 of 369) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.h69 JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.h69 JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.h69 JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKDCOptions.java101 * on the use of some options are as follows:
103 * <li> FORWARDABLE, FORWARDED, PROXIABLE, RENEWABLE options may be set in
105 * the same options (FORWARDABLE, FORWARDED, PROXIABLE, RENEWABLE) set.
182 * @param options the bits to be set for the KDCOptions.
185 public KDCOptions(byte[] options) { argument
186 super(options.length * BITS_PER_UNIT, options);
252 int options =config.getDefaultIntValue("kdc_default_options",
255 if ((options & RENEWABLE_OK) == RENEWABLE_OK) {
262 if ((options
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DAbstractExtensionBindingChecker.java73 private final Options options; field in class:AbstractExtensionBindingChecker
79 public AbstractExtensionBindingChecker( String schemaLanguage, Options options, ErrorHandler handler ) { argument
81 this.allowExtensions = options.compatibilityMode!=Options.STRICT;
82 this.options = options;
85 for (Plugin plugin : options.getAllPlugins())
108 for( Plugin p : options.getAllPlugins() ) {
132 if(options.pluginURIs.contains(namespaceURI)) {
135 for( Plugin p : options.activePlugins ) {
153 return namespaceUri.equals(Const.XJC_EXTENSION_URI) || 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...]
H A DStateTest.java132 * [-expectFail] [options...]
134 String options[] = args;
136 // shift out first arg to create options
138 options = new String[args.length-1];
140 System.arraycopy(args, 1, options, 0, args.length-1);
161 SocketChannel sc = Launcher.launchWithSocketChannel(TEST_SERVICE, options, arg);
170 sc = Launcher.launchWithServerSocketChannel(TEST_SERVICE, options, arg);
177 DatagramChannel dc = Launcher.launchWithDatagramChannel(TEST_SERVICE, options, arg);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractFileSystemProvider.java64 LinkOption... options);
70 LinkOption... options)
76 DynamicFileAttributeView view = getFileAttributeView(file, s[0], options);
83 public final Map<String,Object> readAttributes(Path file, String attributes, LinkOption... options) argument
89 DynamicFileAttributeView view = getFileAttributeView(file, s[0], options);
62 getFileAttributeView(Path file, String name, LinkOption... options) argument
67 setAttribute(Path file, String attribute, Object value, LinkOption... options) argument
/openjdk7/langtools/test/tools/javac/T6458823/
H A DT6458823.java59 List<String> options = new ArrayList<String>();
60 options.add("-processor");
61 options.add("MyProcessor");
62 options.add("-proc:only");
66 options, null, fm.getJavaFileObjectsFromFiles(files));
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c61 * Parse -javaagent tail, of the form name[=options], into name
62 * and options. Returned values are heap allocated and options maybe
66 parseArgumentTail(char* tail, char** name, char** options) { argument
81 *options = NULL;
89 *options = str;
136 * <jarfile>[=<options>]. The tail string is split into the jarfile and
137 * options components. The jarfile manifest is parsed and the value of the
153 char * options; local
160 * Parse <jarfile>[=options] int
311 char * options; local
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java355 * @param options
356 * options specifying how the file is opened
361 * if an invalid combination of options is specified
371 public InputStream newInputStream(Path path, OpenOption... options) argument
374 if (options.length > 0) {
375 for (OpenOption opt: options) {
395 * @param options
396 * options specifying how the file is opened
401 * if {@code options} contains an invalid combination of options
414 newOutputStream(Path path, OpenOption... options) argument
467 newFileChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
515 newAsynchronousFileChannel(Path path, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs) argument
561 newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
802 copy(Path source, Path target, CopyOption... options) argument
838 move(Path source, Path target, CopyOption... options) argument
996 getFileAttributeView(Path path, Class<V> type, LinkOption... options) argument
1023 readAttributes(Path path, Class<A> type, LinkOption... options) argument
1054 readAttributes(Path path, String attributes, LinkOption... options) argument
1090 setAttribute(Path path, String attribute, Object value, LinkOption... options) argument
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java191 public void copy(Path src, Path target, CopyOption... options) argument
194 toZipPath(src).copy(toZipPath(target), options);
212 getFileAttributeView(Path path, Class<V> type, LinkOption... options) argument
233 public void move(Path src, Path target, CopyOption... options) argument
236 toZipPath(src).move(toZipPath(target), options);
241 Set<? extends OpenOption> options,
251 Set<? extends OpenOption> options,
255 return toZipPath(path).newByteChannel(options, attrs);
267 Set<? extends OpenOption> options,
271 return toZipPath(path).newFileChannel(options, attr
240 newAsynchronousFileChannel(Path path, Set<? extends OpenOption> options, ExecutorService exec, FileAttribute<?>... attrs) argument
250 newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
266 newFileChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
275 newInputStream(Path path, OpenOption... options) argument
282 newOutputStream(Path path, OpenOption... options) argument
290 readAttributes(Path path, Class<A> type, LinkOption... options) argument
300 readAttributes(Path path, String attribute, LinkOption... options) argument
312 setAttribute(Path path, String attribute, Object value, LinkOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java77 * @serial The controlling options for executing the VM in
96 * environment can control the exact command/options used in
106 * @param cmd the controlling options for executing the VM in
129 * into <code>-D</code> options), or <code>null</code>.
130 * @param cmd the controlling options for executing the VM in
196 * Startup options for ActivationGroup implementations.
199 * specifying implementation-defined options for ActivationGroups.
213 private String[] options; field in class:ActivationGroupDesc.CommandEnvironment
222 * <code>-Dpropname=value</code> options (as documented for the
225 * @param argv extra options whic
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DJAXBModelBuilder.java57 private final WsimportOptions options; field in class:JAXBModelBuilder
60 public JAXBModelBuilder(WsimportOptions options, ClassNameCollector classNameCollector, MetadataFinder finder, ErrorReceiver errReceiver) { argument
63 this.options = options;
78 schemaCompiler = options.getSchemaCompiler();
80 if(options.entityResolver != null) {
82 schemaCompiler.setEntityResolver(options.entityResolver);
98 InputSource[] externalBindings = options.getSchemaBindings();
130 options.setCodeModel(rawJaxbModel.generateCode(null, errReceiver));
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java55 private void loadAgentLibrary(String agentLibrary, boolean isAbsolute, String options) argument
61 options);
76 public void loadAgentLibrary(String agentLibrary, String options) argument
79 loadAgentLibrary(agentLibrary, false, options);
85 public void loadAgentPath(String agentLibrary, String options) argument
88 loadAgentLibrary(agentLibrary, true, options);
95 public void loadAgent(String agent, String options) argument
99 if (options != null) {
100 args = args + "=" + options;
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DJavaVM.java40 private String options = ""; field in class:JavaVM
66 String options, String args) {
68 this.options = options;
73 String options, String args,
75 this(classname, options, args);
80 // Prepends passed opts array to current options
87 options = newOpts + options;
105 * This method is used for setting VM options o
65 JavaVM(String classname, String options, String args) argument
72 JavaVM(String classname, String options, String args, OutputStream out, OutputStream err) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DSchemaGenerator.java99 final Options options = new Options();
123 options.parseArguments(args);
138 if(hasClass(options.arguments)) {
142 if (options.encoding != null) {
144 aptargs.add(options.encoding);
150 if(options.classpath!=null) {
151 options.classpath = options.classpath+File.pathSeparatorChar+jaxbApi;
153 options.classpath = jaxbApi.getPath();
158 aptargs.add(options
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKlist.java49 // for credentials cache, options are 'f', 'e', 'a' and 'n';
51 char[] options = new char[4]; field in class:Klist
64 * <br>available options for credential caches:
71 * available options for keytabs:
144 options[2] = 'a';
147 options[3] = 'n';
150 options[1] = 'f';
153 options[0] = 'e';
156 options[1] = 'K';
159 options[
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java87 private final WsgenOptions options = new WsgenOptions(); field in class:WsgenTool
109 options.parseArguments(args);
110 options.validate();
111 if(!buildModel(options.endpoint.getName(), listener)){
126 if(!options.keep){
127 options.removeGeneratedFiles();
153 if(options.verbose)
156 if(options.verbose)
163 if(options.verbose)
184 webServiceAP = new WebServiceAP(options, contex
357 usage(WsgenOptions options) argument
[all...]
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DReadOnly.java94 Map options = new HashMap();
95 options.put(O_URL, URL);
96 options.put(O_ALIAS, ALIAS);
97 options.put(O_SPASS_URL, SPASS_URL);
98 options.put(O_KPASS_URL, KPASS_URL);
99 m.initialize(s, null, null, options);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DTextCallbackHandler.java188 OptionInfo[] options;
192 options = new OptionInfo[] {
198 options = new OptionInfo[] {
205 options = new OptionInfo[] {
212 options = new OptionInfo[optionStrings.length];
213 for (int i = 0; i < options.length; i++) {
214 options[i] = new OptionInfo(optionStrings[i], i);
233 for (int i = 0; i < options.length; i++) {
235 // defaultOption is an index into the options array
237 i + ". " + options[
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java71 ClassReader options = new ClassReader();
72 options.copyOptionsFrom(props);
98 doFile(file, source, dest, options, encoding, contError);
108 doJar(a, source, dest, options, encoding, contError);
110 doFile(a, source, dest, options, encoding, contError);
121 ClassReader options, String encoding,
124 doFile(a, source, dest, options, encoding);
127 doFile(a, source, dest, options, encoding);
134 private static void doJar(String a, File source, File dest, ClassReader options, argument
143 doStream(name, jf.getInputStream(je), dest, options, encodin
119 doFile(String a, File source, File dest, ClassReader options, String encoding, boolean contError) argument
154 doStream(String a, InputStream in, File dest, ClassReader options, String encoding) argument
191 doFile(String a, File source, File dest, ClassReader options, String encoding) argument
276 ClassReader(ClassReader options) argument
281 copyOptionsFrom(ClassReader options) argument
294 copyOptionsFrom(Map<String, String> options) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DJavapTask.java124 task.options.help = true;
130 task.options.version = true;
136 task.options.fullVersion = true;
142 task.options.verbose = true;
143 task.options.showFlags = true;
144 task.options.showAllAttrs = true;
150 task.options.showLineAndLocalVariableTables = true;
156 task.options.accessOptions.add(opt);
157 task.options.showAccess = AccessFlags.ACC_PUBLIC;
163 task.options
351 JavapTask(Writer out, JavaFileManager fileManager, DiagnosticListener<? super JavaFileObject> diagnosticListener, Iterable<String> options, Iterable<String> classes) argument
1017 Options options; field in class:JavapTask
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DClassType.java197 * bit flag in the <code>options</code> argument; however,
214 * @param options the integer bit flag options.
240 List<? extends Value> arguments, int options)
301 * bit flag in the <code>options</code> argument; however,
318 * @param options the integer bit flag options.
346 List<? extends Value> arguments, int options)
239 invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) argument
345 newInstance(ThreadReference thread, Method method, List<? extends Value> arguments, int options) argument
/openjdk7/jdk/src/share/back/
H A Dinvoker.h43 jbyte options; member in struct:InvokeRequest
63 jvmtiError invoker_requestInvoke(jbyte invokeType, jbyte options, jint id,

Completed in 203 milliseconds

1234567891011>>