Home | History | Annotate | Download | only in posix

Lines Matching defs:plist

134   struct double_list *plist, *buf = NULL, *check;
142 for (plist = TT.current_hunk; plist; plist = plist->next) {
143 if (plist->data[0]==' ') matcheof++;
145 if (PATCH_DEBUG) fprintf(stderr, "HUNK:%s\n", plist->data);
154 plist = TT.current_hunk;
163 while (plist && *plist->data == "+-"[reverse]) {
164 if (data && !lcmp(data, plist->data+1)) {
167 plist = plist->next;
175 if (!plist && matcheof) break;
197 if (!plist || lcmp(check->data, plist->data+1)) {
204 if (!plist) fprintf(stderr, "NULL plist\n");
206 while (plist->data[bug] == check->data[bug]) bug++;
207 fprintf(stderr, "NOT(%d:%d!=%d): %s\n", bug, plist->data[bug],
208 check->data[bug], plist->data);
214 plist = TT.current_hunk;
221 if (PATCH_DEBUG) fprintf(stderr, "MAYBE: %s\n", plist->data);
222 // This line matches. Advance plist, detect successful match.
223 plist = plist->next;
224 if (!plist && !matcheof) goto out;