Lines Matching defs:errors
157 * A small fixed upper limit on # of decode errors to capture per-
161 char *errors[4];
205 if (state->num_errors == ARRAY_SIZE(state->errors)) {
206 /* too many errors, bail */
212 vasprintf(&state->errors[state->num_errors++], fmt, ap);
223 print(state, "%s%s", (i > 0) ? ", " : "", state->errors[i]);
224 free(state->errors[i]);
712 unsigned errors = 0; /* number of consecutive unmatched instructions */
722 if (state->options->max_errors && (errors > state->options->max_errors)) {
742 errors++;
750 errors++;
752 errors = 0;