Home | History | Annotate | Download | only in ANRdaemon

Lines Matching defs:threshold

79  * Logging on/off threshold.
159 * If tracing is on, increase the idle threshold by 1.00% so that we do not
161 * threshold.
165 int threshold = idle_threshold + (tracing?100:0);
170 return (diff_idle * 10000 < diff_total * threshold);
511 " -t N cpu threshold for logging to start "
540 int threshold;
555 threshold = atoi(optarg);
556 if (threshold > 9999 || threshold < 5000) {
557 fprintf(stderr, "logging threshold should be 5000-9999\n");
560 idle_threshold = 10000 - threshold;