Lines Matching refs:txt
60 void ERR_add_error_txt(const char *separator, const char *txt) in ERR_add_error_txt() argument
76 const char *curr = txt, *next = txt; in ERR_add_error_txt()
107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt()
117 if ((size_t)(next - txt) <= available_len) in ERR_add_error_txt()
122 if (curr != txt) { in ERR_add_error_txt()
123 tmp = OPENSSL_strndup(txt, curr - txt); in ERR_add_error_txt()
130 txt = curr; in ERR_add_error_txt()
133 tmp = OPENSSL_strndup(txt, next - strlen(separator) - txt); in ERR_add_error_txt()
140 ERR_add_error_data(2, leading_separator, txt); in ERR_add_error_txt()
142 txt = next; /* finished */ in ERR_add_error_txt()
144 } while (*txt != '\0'); in ERR_add_error_txt()