Lines Matching defs:data
127 * Something is unsupported, exactly what is expressed with additional data
168 const char **func, const char **data,
357 const char **data, int *flags)
359 return get_error_values(EV_POP, file, line, func, data, flags);
369 const char **data, int *flags)
371 return get_error_values(EV_POP, file, line, NULL, data, flags);
390 unsigned long ERR_peek_error_data(const char **data, int *flags)
392 return get_error_values(EV_PEEK, NULL, NULL, NULL, data, flags);
397 const char **data, int *flags)
399 return get_error_values(EV_PEEK, file, line, func, data, flags);
404 const char **data, int *flags)
406 return get_error_values(EV_PEEK, file, line, NULL, data, flags);
425 unsigned long ERR_peek_last_error_data(const char **data, int *flags)
427 return get_error_values(EV_PEEK_LAST, NULL, NULL, NULL, data, flags);
432 const char **data, int *flags)
434 return get_error_values(EV_PEEK_LAST, file, line, func, data, flags);
439 const char **data, int *flags)
441 return get_error_values(EV_PEEK_LAST, file, line, NULL, data, flags);
448 const char **data, int *flags)
507 if (data == NULL) {
512 *data = es->err_data[i];
513 if (*data == NULL) {
514 *data = "";
777 static int err_set_error_data_int(char *data, size_t size, int flags,
787 err_set_data(es, es->top, data, size, flags);
792 void ERR_set_error_data(char *data, int flags)
798 * We estimate the size of the data. If it's not flagged as allocated,
808 err_set_error_data_int(data, strlen(data) + 1, flags, 1);
826 /* Get the current error data; if an allocated string get it. */
844 * data pointer and the flags. We will set them again at the end