Lines Matching defs:prefix
27 "prefix",
46 char *prefix; /* Text prefix, given by user */
59 ctx->prefix = NULL;
71 OPENSSL_free(ctx->prefix);
90 * If no prefix is set or if it's empty, and no indentation amount is set,
93 if ((ctx->prefix == NULL || *ctx->prefix == '\0')
97 * prepared to handle prefix and indentation the next time around.
111 * If we know that we're at the start of the line, output prefix and
117 if (ctx->prefix != NULL
118 && !BIO_write_ex(BIO_next(b), ctx->prefix, strlen(ctx->prefix),
161 OPENSSL_free(ctx->prefix);
163 ctx->prefix = NULL;
166 ctx->prefix = OPENSSL_strdup((const char *)ptr);
167 ret = ctx->prefix != NULL;