• Home
  • Raw
  • Download

Lines Matching refs:cups_option_t

22 static int	cups_compare_options(cups_option_t *a, cups_option_t *b);
24 cups_option_t *option, int prev, int *rdiff);
41 cups_option_t **options) /* IO - Pointer to options */ in cupsAddIntegerOption()
63 cups_option_t **options) /* IO - Pointer to options */ in cupsAddOption()
65 cups_option_t *temp; /* Pointer to new option */ in cupsAddOption()
111 temp = (cups_option_t *)malloc(sizeof(cups_option_t)); in cupsAddOption()
113 temp = (cups_option_t *)realloc(*options, sizeof(cups_option_t) * (size_t)(num_options + 1)); in cupsAddOption()
127 … memmove(temp + insert + 1, temp + insert, (size_t)(num_options - insert) * sizeof(cups_option_t)); in cupsAddOption()
162 cups_option_t *options) /* I - Pointer to options */ in cupsFreeOptions()
195 cups_option_t *options) /* I - Options */ in cupsGetIntegerOption()
221 cups_option_t *options) /* I - Options */ in cupsGetOption()
262 cups_option_t **options) /* O - Options found */ in cupsParseOptions()
486 cups_option_t **options) /* IO - Options */ in cupsRemoveOption()
489 cups_option_t *option; /* Current option */ in cupsRemoveOption()
527 memmove(option, option + 1, (size_t)i * sizeof(cups_option_t)); in cupsRemoveOption()
549 cups_option_t **values) /* O - Array of key/value pairs */ in _cupsGet1284Values()
627 cups_compare_options(cups_option_t *a, /* I - First option */ in cups_compare_options()
628 cups_option_t *b) /* I - Second option */ in cups_compare_options()
642 cups_option_t *options, /* I - Options */ in cups_find_option()
650 cups_option_t key; /* Search key */ in cups_find_option()