Lines Matching refs:bound
56 static int mime_bound_check(char *line, int linelen, const char *bound, int blen);
57 static int multi_split(BIO *bio, int flags, const char *bound, STACK_OF(BIO) **ret);
243 char bound[33], c;
260 if (RAND_bytes_ex(libctx, (unsigned char *)bound, 32, 0) <= 0)
263 c = bound[i] & 0xf;
268 bound[i] = c;
270 bound[32] = 0;
277 bound, mime_eol, mime_eol);
281 BIO_printf(bio, "------%s%s", bound, mime_eol);
284 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
294 BIO_printf(bio, "%s------%s--%s%s", mime_eol, bound,
602 static int multi_split(BIO *bio, int flags, const char *bound, STACK_OF(BIO) **ret)
611 blen = strlen(bound);
620 state = mime_bound_check(linebuf, len, bound, blen);
976 static int mime_bound_check(char *line, int linelen, const char *bound, int blen)
981 blen = strlen(bound);
987 && strncmp(line + 2, bound, blen) == 0) {