Lines Matching refs:next
76 const char *curr = txt, *next = txt; in ERR_add_error_txt() local
97 const size_t len_next = strlen(next); in ERR_add_error_txt()
100 next += len_next; in ERR_add_error_txt()
103 next += available_len; in ERR_add_error_txt()
104 curr = next; /* will split at this point */ in ERR_add_error_txt()
107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt()
108 curr = next; in ERR_add_error_txt()
109 next = strstr(curr, separator); in ERR_add_error_txt()
110 if (next != NULL) { in ERR_add_error_txt()
111 next += strlen(separator); in ERR_add_error_txt()
112 trailing_separator = *next == '\0'; in ERR_add_error_txt()
114 next = curr + strlen(curr); in ERR_add_error_txt()
117 if ((size_t)(next - txt) <= available_len) in ERR_add_error_txt()
133 tmp = OPENSSL_strndup(txt, next - strlen(separator) - txt); in ERR_add_error_txt()
142 txt = next; /* finished */ in ERR_add_error_txt()