Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:threshold

227   int32_t threshold;
1413 /* check to make sure that the child method meets the threshold of the parent */
1418 return (percentage < gOptions.threshold) ? 0 : 1;
2524 " -t threshold - Threshold percentage for including nodes in "
2554 gOptions.threshold = atoi(optarg);
2567 gOptions.threshold = -1;
2574 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
2575 gOptions.threshold = 20;