Lines Matching defs:file
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
51 {ERR_PACK(ERR_LIB_CONF, 0, 0), "configuration file routines"},
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,
493 if (file != NULL) {
494 *file = es->err_file[i];
495 if (*file == NULL)
496 *file = "";