Lines Matching refs:line
167 const char **file, int *line,
355 unsigned long ERR_get_error_all(const char **file, int *line,
359 return get_error_values(EV_POP, file, line, func, data, flags);
363 unsigned long ERR_get_error_line(const char **file, int *line)
365 return get_error_values(EV_POP, file, line, NULL, NULL, NULL);
368 unsigned long ERR_get_error_line_data(const char **file, int *line,
371 return get_error_values(EV_POP, file, line, NULL, data, flags);
380 unsigned long ERR_peek_error_line(const char **file, int *line)
382 return get_error_values(EV_PEEK, file, line, NULL, NULL, NULL);
395 unsigned long ERR_peek_error_all(const char **file, int *line,
399 return get_error_values(EV_PEEK, file, line, func, data, flags);
403 unsigned long ERR_peek_error_line_data(const char **file, int *line,
406 return get_error_values(EV_PEEK, file, line, NULL, data, flags);
415 unsigned long ERR_peek_last_error_line(const char **file, int *line)
417 return get_error_values(EV_PEEK_LAST, file, line, NULL, NULL, NULL);
430 unsigned long ERR_peek_last_error_all(const char **file, int *line,
434 return get_error_values(EV_PEEK_LAST, file, line, func, data, flags);
438 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
441 return get_error_values(EV_PEEK_LAST, file, line, NULL, data, flags);
446 const char **file, int *line,
498 if (line != NULL)
499 *line = es->err_line[i];