Lines Matching refs:get_error_values
156 static unsigned long get_error_values(ERR_GET_ACTION g,
327 return get_error_values(EV_POP, NULL, NULL, NULL, NULL, NULL); in ERR_get_error()
334 return get_error_values(EV_POP, file, line, func, data, flags); in ERR_get_error_all()
340 return get_error_values(EV_POP, file, line, NULL, NULL, NULL); in ERR_get_error_line()
346 return get_error_values(EV_POP, file, line, NULL, data, flags); in ERR_get_error_line_data()
352 return get_error_values(EV_PEEK, NULL, NULL, NULL, NULL, NULL); in ERR_peek_error()
357 return get_error_values(EV_PEEK, file, line, NULL, NULL, NULL); in ERR_peek_error_line()
362 return get_error_values(EV_PEEK, NULL, NULL, func, NULL, NULL); in ERR_peek_error_func()
367 return get_error_values(EV_PEEK, NULL, NULL, NULL, data, flags); in ERR_peek_error_data()
374 return get_error_values(EV_PEEK, file, line, func, data, flags); in ERR_peek_error_all()
381 return get_error_values(EV_PEEK, file, line, NULL, data, flags); in ERR_peek_error_line_data()
387 return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, NULL, NULL); in ERR_peek_last_error()
392 return get_error_values(EV_PEEK_LAST, file, line, NULL, NULL, NULL); in ERR_peek_last_error_line()
397 return get_error_values(EV_PEEK_LAST, NULL, NULL, func, NULL, NULL); in ERR_peek_last_error_func()
402 return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, data, flags); in ERR_peek_last_error_data()
409 return get_error_values(EV_PEEK_LAST, file, line, func, data, flags); in ERR_peek_last_error_all()
416 return get_error_values(EV_PEEK_LAST, file, line, NULL, data, flags); in ERR_peek_last_error_line_data()
420 static unsigned long get_error_values(ERR_GET_ACTION g, in get_error_values() function