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