Lines Matching defs:separator
60 void ERR_add_error_txt(const char *separator, const char *txt)
69 if (separator == NULL)
70 separator = "";
77 const char *leading_separator = separator;
90 || strlen(separator) >= (size_t)(MAX_DATA_LEN - data_len))
93 available_len = MAX_DATA_LEN - data_len - strlen(separator) - 1;
96 if (*separator == '\0') {
109 next = strstr(curr, separator);
111 next += strlen(separator);
126 ERR_add_error_data(2, separator, tmp);
133 tmp = OPENSSL_strndup(txt, next - strlen(separator) - txt);
136 /* output txt without the trailing separator */
147 void ERR_add_error_mem_bio(const char *separator, BIO *bio)
161 ERR_add_error_txt(separator, str);