Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:chain

206     struct nameseq *chain;
221 /* We have a match. Add it to the chain. */
224 new->next = state->chain;
225 state->chain = new;
266 Return a malloc'd chain of matching elements (or nil if none). */
280 ar_glob_match will accumulate them in STATE.chain. */
288 state.chain = 0;
292 if (state.chain == 0)
298 for (n = state.chain; n != 0; n = n->next)
304 /* Put them back into the chain in the sorted order. */
306 for (n = state.chain; n != 0; n = n->next)
309 return state.chain;