Lines Matching refs:curr
76 const char *curr = txt, *next = txt; in ERR_add_error_txt() local
101 curr = NULL; /* no need to split */ in ERR_add_error_txt()
104 curr = next; /* will split at this point */ in ERR_add_error_txt()
108 curr = next; in ERR_add_error_txt()
109 next = strstr(curr, separator); in ERR_add_error_txt()
114 next = curr + strlen(curr); in ERR_add_error_txt()
118 curr = NULL; /* the above loop implies *next == '\0' */ in ERR_add_error_txt()
120 if (curr != NULL) { 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()