Lines Matching refs:prefix
6 - prefix BIO filter
13 long BIO_set_prefix(BIO *b, const char *prefix);
19 BIO_f_cipher() returns the prefix BIO method. This is a filter for
23 The prefix and the indentation are combined. For each line of output
24 going through this filter, the prefix is output first, then the amount
28 By default, there is no prefix, and indentation is set to 0.
30 BIO_set_prefix() sets the prefix to be used for future lines of
31 text, using I<prefix>. I<prefix> may be NULL, signifying that there
32 should be no prefix. If I<prefix> isn't NULL, this function makes a
47 BIO_f_prefix() returns the prefix BIO method.
49 BIO_set_prefix() returns 1 if the prefix was correctly set, or <=0 on
52 BIO_set_indent() returns 1 if the prefix was correctly set, or <=0 on