Lines Matching defs:curr
76 const char *curr = txt, *next = txt;
101 curr = NULL; /* no need to split */
104 curr = next; /* will split at this point */
108 curr = next;
109 next = strstr(curr, separator);
114 next = curr + strlen(curr);
118 curr = NULL; /* the above loop implies *next == '\0' */
120 if (curr != NULL) {
121 /* split error msg at curr since error data would get too long */
122 if (curr != txt) {
123 tmp = OPENSSL_strndup(txt, curr - txt);
130 txt = curr;