Lines Matching refs:plist
133 struct double_list *plist, *buf = NULL, *check; in apply_one_hunk() local
141 for (plist = TT.current_hunk; plist; plist = plist->next) { in apply_one_hunk()
142 if (plist->data[0]==' ') trailing++; in apply_one_hunk()
144 if (FLAG(x)) fprintf(stderr, "HUNK:%s\n", plist->data); in apply_one_hunk()
153 plist = TT.current_hunk; in apply_one_hunk()
162 while (plist && *plist->data == "+-"[reverse]) { in apply_one_hunk()
163 if (data && !lcmp(data, plist->data+1)) in apply_one_hunk()
165 plist = plist->next; in apply_one_hunk()
173 if (!plist && matcheof) break; in apply_one_hunk()
195 if (!plist || lcmp(check->data, plist->data+1)) { in apply_one_hunk()
202 if (!plist) fprintf(stderr, "NULL plist\n"); in apply_one_hunk()
204 while (plist->data[bug] == check->data[bug]) bug++; in apply_one_hunk()
205 fprintf(stderr, "NOT(%d:%d!=%d): %s\n", bug, plist->data[bug], in apply_one_hunk()
206 check->data[bug], plist->data); in apply_one_hunk()
218 plist = TT.current_hunk; in apply_one_hunk()
225 if (FLAG(x)) fprintf(stderr, "MAYBE: %s\n", plist->data); in apply_one_hunk()
227 plist = plist->next; in apply_one_hunk()
228 if (!plist && !matcheof) goto out; in apply_one_hunk()