Lines Matching defs:suboption

538         char suboption[FILENAME_MAX+1];
548 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
551 gdata->utf8_output_filename = HPROF_MALLOC((int)strlen(suboption)+1);
552 (void)strcpy(gdata->utf8_output_filename, suboption);
559 if (!get_tok(&options, suboption, (int)sizeof(suboption), ':')) {
565 gdata->net_hostname = HPROF_MALLOC((int)strlen(suboption)+1);
566 (void)strcpy(gdata->net_hostname, suboption);
570 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
573 if (strcmp(suboption, "a") == 0) {
575 } else if (strcmp(suboption, "b") == 0) {
581 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
584 gdata->max_trace_depth = (int)strtol(suboption, &endptr, 10);
590 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
593 gdata->sample_interval = (int)strtol(suboption, &endptr, 10);
598 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
601 gdata->cutoff_point = strtod(suboption, &endptr);
606 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
609 if ((strcmp(suboption, "samples") == 0) ||
610 (strcmp(suboption, "y") == 0)) {
612 } else if (strcmp(suboption, "times") == 0) {
615 } else if (strcmp(suboption, "old") == 0) {
622 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
625 if (strcmp(suboption, "dump") == 0) {
627 } else if (strcmp(suboption, "sites") == 0) {
629 } else if (strcmp(suboption, "all") == 0) {
676 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
679 gdata->logflags = (int)strtol(suboption, NULL, 0);
681 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
684 gdata->debugflags = (int)strtol(suboption, NULL, 0);
706 if (!get_tok(&options, suboption, (int)sizeof(suboption), ',')) {
709 gdata->experiment = (int)strtol(suboption, NULL, 0);