Lines Matching refs:options

72 /* Experimental options */
432 " then it will be added to the end of the options supplied via the\n"
464 " - The debug options and environment variables are available with both java\n"
478 " - The obsolete options may be completely removed in a future release.\n"
479 " - The debug options and environment variables are not considered public\n"
493 "%s option error: %s (%s)", AGENTNAME, description, gdata->options);
505 char *options;
524 gdata->options = all_options;
532 options = all_options;
536 while (*options) {
541 if (!get_tok(&options, option, (int)sizeof(option), '=')) {
542 option_error("general syntax error parsing options");
546 option_error("file or net options should only appear once");
548 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
557 option_error("file or net options should only appear once");
559 if (!get_tok(&options, suboption, (int)sizeof(suboption), ':')) {
562 if (!get_tok(&options, port_number, (int)sizeof(port_number), ',')) {
570 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
581 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
590 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
598 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
606 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
622 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
636 if ( !setBinarySwitch(&options, &(gdata->lineno_in_traces)) ) {
640 if ( !setBinarySwitch(&options, &(gdata->thread_in_traces)) ) {
644 if ( !setBinarySwitch(&options, &(gdata->dump_on_exit)) ) {
648 if ( !setBinarySwitch(&options, &(gdata->micro_state_accounting)) ) {
652 if ( !setBinarySwitch(&options, &(gdata->force_output)) ) {
656 if ( !setBinarySwitch(&options, &(gdata->verbose)) ) {
660 if ( !setBinarySwitch(&options, &(gdata->primfields)) ) {
664 if ( !setBinarySwitch(&options, &(gdata->primarrays)) ) {
668 if ( !setBinarySwitch(&options, &(gdata->monitor_tracing)) ) {
672 if ( !setBinarySwitch(&options, &(gdata->gc_okay)) ) {
676 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
681 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
686 if ( !setBinarySwitch(&options, &(gdata->coredump)) ) {
692 if ( !setBinarySwitch(&options, &(gdata->errorexit)) ) {
696 if ( !setBinarySwitch(&options, &(gdata->pause)) ) {
700 if ( !setBinarySwitch(&options, &(gdata->debug)) ) {
706 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
1943 Agent_OnLoad(JavaVM *vm, char *options, void *reserved)
1950 HPROF_ERROR(JNI_TRUE, "Cannot load this JVM TI agent twice, check your java command line for duplicate hprof options.");
1987 parse_options(options);
1989 LOG2("Agent_OnLoad", "Has jvmtiEnv and options parsed");
2109 if ( gdata->options != NULL ) {
2110 HPROF_FREE(gdata->options);