Lines Matching refs:options

36  * One job of the launcher is to remove command line options which the
37 * vm does not understand and will not process. These options include
38 * options which select which style of vm is run (e.g. -client and
39 * -server) as well as options which select the data model to use.
41 * options are turned into "-foo" options to the vm. This option
44 * CheckJvmType removes vm style options and TranslateApplicationArgs
46 * and removes -d<n> options. On unix, there is a possibility that the running
91 * List of VM options to be specified when the VM is created.
93 static JavaVMOption *options;
273 /* Parse command line options; if the return value of
452 * Checks the command line options to find which JVM type was
649 * Expand options array if needed to accommodate at least one more
653 if (options == 0) {
655 options = JLI_MemAlloc(maxOptions * sizeof(JavaVMOption));
660 memcpy(tmp, options, numOptions * sizeof(JavaVMOption));
661 JLI_MemFree(options);
662 options = tmp;
665 options[numOptions].optionString = str;
666 options[numOptions++].extraInfo = info;
717 * from command line options.
718 * The routine also parses splash screen command line options and
752 * Scan through the arguments for options relevant to multiple JRE
756 * java [options] class [argument...]
758 * java [options] -jar file.jar [argument...]
761 * the version specification options (new to 1.5) removed, so that
957 * to be started to process given options. *pret (the launcher
1006 * command line options.
1054 ; /* Ignore machine independent options already handled */
1056 ; /* Processing of platform dependent options */
1087 * Initializes the Java Virtual Machine. Also frees options array when
1099 args.options = options;
1111 i, args.options[i].optionString);
1115 JLI_MemFree(options);
1284 * For our tools, we try to add 3 VM options:
1899 * (the exec in CreateExecutionEnvironment removes -d<n> options and points the
1901 * requested version is matched, an exec would not occur, and these options
1908 * Unconditionally remove both -d32 and -d64 options since only
1909 * the last such options has an effect; e.g.