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

Lines Matching refs:cv

1316       struct command_variable *cv;
1323 for (cv = command_variables; cv != 0; cv = cv->next)
1325 v = cv->variable;
1336 for (cv = command_variables; cv != 0; cv = cv->next)
1338 v = cv->variable;
2316 struct command_variable *cv;
2318 for (cv = command_variables; cv != 0; cv = cv->next)
2319 if (cv->variable == v)
2322 if (! cv) {
2323 cv = (struct command_variable *) xmalloc (sizeof (*cv));
2324 cv->variable = v;
2325 cv->next = command_variables;
2326 command_variables = cv;