Lines Matching refs:size
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);
798 * We estimate the size of the data. If it's not flagged as allocated,
799 * then this is safe, and if it is flagged as allocated, then our size
802 * reallocated to a new size.
821 int i, len, size;
838 size = es->err_data_size[i];
849 } else if ((str = OPENSSL_malloc(size = 81)) == NULL) {
861 if (len >= size) {
864 size = len + 20;
865 p = OPENSSL_realloc(str, size);
872 OPENSSL_strlcat(str, arg, (size_t)size);
874 if (!err_set_error_data_int(str, size, flags, 0))