Lines Matching refs:options

57  * One job of the launcher is to remove command line options which the
58 * vm does not understand and will not process. These options include
59 * options which select which style of vm is run (e.g. -client and
60 * -server) as well as options which select the data model to use.
62 * options are turned into "-foo" options to the vm. This option
65 * CheckJVMType removes vm style options and TranslateApplicationArgs
68 * processes and removes -d<n> options. However, in case
72 * options and prevent them from being passed to the vm; this is done
98 * options which specify the version are not passed to the exec'd version,
102 * but also for correctness, since any command line options have been
104 * This would be incorrect because the command line options are defined
141 * List of VM options to be specified when the VM is created.
143 static JavaVMOption *options;
326 * Parse command line options; if the return value of
644 * Checks the command line options to find which JVM type was
851 * Expand options array if needed to accommodate at least one more
855 if (options == 0) {
857 options = JLI_MemAlloc(maxOptions * sizeof(JavaVMOption));
862 memcpy(tmp, options, numOptions * sizeof(JavaVMOption));
863 JLI_MemFree(options);
864 options = tmp;
867 options[numOptions].optionString = str;
868 options[numOptions++].extraInfo = info;
893 * from command line options.
894 * The routine also parses splash screen command line options and
928 * Scan through the arguments for options relevant to multiple JRE
932 * java [options] class [argument...]
934 * java [options] -jar file.jar [argument...]
937 * the version specification options (new to 1.5) removed, so that
1139 * options); returns JNI_TRUE if vm needs to be started to process
1140 * given options. *pret (the launcher process return value) is set to
1182 * command line options.
1236 ; /* Ignore machine independent options already handled */
1261 * Initializes the Java Virtual Machine. Also frees options array when
1273 args.options = options;
1285 i, args.options[i].optionString);
1289 JLI_MemFree(options);
1536 * For our tools, we try to add 3 VM options:
1693 "Usage: %s [-options] class [args...]\n"
1695 " or %s [-options] -jar jarfile [args...]\n"
1698 "where options include:\n",
1755 " -X print help on non-standard options\n"
1766 " -agentlib:<libname>[=<options>]\n"
1769 " -agentpath:<pathname>[=<options>]\n"
1771 " -javaagent:<jarpath>[=<options>]\n"
1780 * Print usage message for -X options.