Home | History | Annotate | Download | only in cups

Lines Matching defs:active

301   cups_array_t	*active = NULL,		/* Active conflicts */
394 active = cups_test_constraints(dinfo, new_option, new_value,
399 active = cups_test_constraints(dinfo, new_option, new_value, num_myres,
402 have_conflicts = (active != NULL);
404 if (!active || !num_resolved)
414 for (c = (_cups_dconstres_t *)cupsArrayFirst(active), changed = 0;
416 c = (_cups_dconstres_t *)cupsArrayNext(active))
485 cupsArrayDelete(active);
486 active = NULL;
524 cupsArrayDelete(active);
2081 static cups_array_t * /* O - Active constraints */
2096 cups_array_t *active = NULL; /* Active constraints */
2255 if (!active)
2256 active = cupsArrayNew(NULL, NULL);
2258 cupsArrayAdd(active, c);
2273 return (active);