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