Home | History | Annotate | Download | only in err

Lines Matching full:len

66 void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u),
87 static int print_fp(const char *str, size_t len, void *fp)
89 return fwrite(str, 1, len, fp);
97 void ERR_error_string_n(unsigned long e, char *buf, size_t len)
118 BIO_snprintf(buf, len,"error:%08lX:%s:%s:%s", e, ls?ls:lsbuf,
120 if (strlen(buf) == len-1)
125 if (len > NUM_COLONS) /* ... if possible */
133 if (colon == NULL || colon > &buf[len-1] - NUM_COLONS + i)
136 * (buf[len-1] is the terminating 0)*/
137 colon = &buf[len-1] - NUM_COLONS + i;