Lines Matching full:destinations
97 int num_dests; /* Number of lpoptions destinations */
98 cups_dest_t *dests; /* lpoptions destinations */
127 int num_dests; /* Number of destinations */
128 cups_dest_t *dests; /* Destinations */
241 * 'cupsAddDest()' - Add a destination to the list of destinations.
252 * destinations to the user's lpoptions file.
255 int /* O - New number of destinations */
258 int num_dests, /* I - Number of destinations */ in cupsAddDest()
259 cups_dest_t **dests) /* IO - Destinations */ in cupsAddDest()
796 * Make a copy of the destination to an array of destinations (or just a single
803 int /* O - New number of destinations */
805 int num_dests, /* I - Number of destinations */ in cupsCopyDest()
948 * 'cupsEnumDests()' - Enumerate available destinations with a callback function.
950 * Destinations are enumerated from one or more sources. The callback function
956 * destinations that are enumerated. Passing 0 for both will enumerate all
958 * destinations that are available but have not yet been added locally.
961 * destinations have been enumerated or the callback function returns 0.
964 * destinations - it is up to the caller to suppress any duplicate destinations.
985 * 'cupsEnumDestsBlock()' - Enumerate available destinations with a block.
987 * Destinations are enumerated from one or more sources. The block receives the
993 * destinations that are enumerated. Passing 0 for both will enumerate all
995 * destinations that are available but have not yet been added locally.
998 * destinations have been enumerated or the block returns 0.
1001 * destinations - it is up to the caller to suppress any duplicate destinations.
1022 * 'cupsFreeDests()' - Free the memory used by the list of destinations.
1026 cupsFreeDests(int num_dests, /* I - Number of destinations */ in cupsFreeDests()
1027 cups_dest_t *dests) /* I - Destinations */ in cupsFreeDests()
1052 * list of supported destinations for the current user.
1058 int num_dests, /* I - Number of destinations */ in cupsGetDest()
1059 cups_dest_t *dests) /* I - Destinations */ in cupsGetDest()
1321 * '_cupsGetDests()' - Get destinations from a server.
1330 * "dest" is initialized to point to the array of destinations.
1343 int /* O - Number of destinations */
1348 cups_dest_t **dests, /* IO - Destinations */ in _cupsGetDests()
1352 int num_dests = 0; /* Number of destinations */ in _cupsGetDests()
1598 * 'cupsGetDests()' - Get the list of destinations from the default server.
1600 * Starting with CUPS 1.2, the returned list of destinations include the
1610 * CUPS 2.2 adds accessible IPP printers to the list of destinations that can
1620 int /* O - Number of destinations */
1621 cupsGetDests(cups_dest_t **dests) /* O - Destinations */ in cupsGetDests()
1628 * 'cupsGetDests2()' - Get the list of destinations from the specified server.
1630 * Starting with CUPS 1.2, the returned list of destinations include the
1640 * CUPS 2.2 adds accessible IPP printers to the list of destinations that can
1650 int /* O - Number of destinations */
1652 cups_dest_t **dests) /* O - Destinations */ in cupsGetDests2()
1711 * Return the number of destinations... in cupsGetDests2()
1719 DEBUG_printf(("1cupsGetDests2: Returning %d destinations.", data.num_dests)); in cupsGetDests2()
1927 int /* O - New number of destinations */
1930 int num_dests, /* I - Number of destinations */ in cupsRemoveDest()
1931 cups_dest_t **dests) /* IO - Destinations */ in cupsRemoveDest()
1933 int i; /* Index into destinations */ in cupsRemoveDest()
1977 int num_dests, /* I - Number of destinations */ in cupsSetDefaultDest()
1978 cups_dest_t *dests) /* I - Destinations */ in cupsSetDefaultDest()
2005 * 'cupsSetDests()' - Save the list of destinations for the default server.
2007 * This function saves the destinations to /etc/cups/lpoptions when run
2014 cupsSetDests(int num_dests, /* I - Number of destinations */ in cupsSetDests()
2015 cups_dest_t *dests) /* I - Destinations */ in cupsSetDests()
2022 * 'cupsSetDests2()' - Save the list of destinations for the specified server.
2024 * This function saves the destinations to /etc/cups/lpoptions when run
2032 int num_dests, /* I - Number of destinations */ in cupsSetDests2()
2033 cups_dest_t *dests) /* I - Destinations */ in cupsSetDests2()
2042 int num_temps; /* Number of temporary destinations */ in cupsSetDests2()
2043 cups_dest_t *temps = NULL, /* Temporary destinations */ in cupsSetDests2()
2057 * Get the server destinations... in cupsSetDests2()
2196 * Free the temporary destinations and close the file... in cupsSetDests2()
2464 int *num_dests, /* IO - Number of destinations */ in cups_add_dest()
2465 cups_dest_t **dests) /* IO - Destinations */ in cups_add_dest()
2542 * 'cups_compare_dests()' - Compare two destinations.
3372 * 'cups_enum_dests()' - Enumerate destinations from a specific server.
3387 num_dests; /* Number of destinations */ in cups_enum_dests()
3388 cups_dest_t *dests = NULL, /* Destinations */ in cups_enum_dests()
3928 int num_dests, /* I - Number of destinations */ in cups_find_dest()
3929 cups_dest_t *dests, /* I - Destinations */ in cups_find_dest()
4025 * 'cups_get_cb()' - Collect enumerated destinations.
4104 * 'cups_get_dests()' - Get destinations from a file.
4107 static int /* O - Number of destinations */
4112 int load_all, /* I - Load all saved destinations? */ in cups_get_dests()
4114 int num_dests, /* I - Number of destinations */ in cups_get_dests()
4115 cups_dest_t **dests) /* IO - Destinations */ in cups_get_dests()
4195 * Match and/or ignore missing destinations... in cups_get_dests()