Lines Matching refs:hostname

111 snmp_brother_printer_info(char *hostname, char *community, char **manufacturer,  in snmp_brother_printer_info()  argument
123 tmp = snmp_get_string(hostname, community, in snmp_brother_printer_info()
131 *serial_no = snmp_get_string(hostname, community, in snmp_brother_printer_info()
139 snmp_ricoh_printer_info(char *hostname, char *community, char **manufacturer, in snmp_ricoh_printer_info() argument
151 tmp = snmp_get_string(hostname, community, in snmp_ricoh_printer_info()
159 *serial_no = snmp_get_string(hostname, community, in snmp_ricoh_printer_info()
167 snmp_lexmark_printer_info(char *hostname, char *community, char **manufacturer, in snmp_lexmark_printer_info() argument
179 tmp = snmp_get_string(hostname, community, in snmp_lexmark_printer_info()
187 *serial_no = snmp_get_string(hostname, community, in snmp_lexmark_printer_info()
195 snmp_xerox_phaser_printer_info(char *hostname, char *community, in snmp_xerox_phaser_printer_info() argument
218 tmp = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
227 *manufacturer = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
230 *manufacturer = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
233 *manufacturer = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
237 *model = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
240 *model = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
243 *model = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
247 *serial_no = snmp_get_string(hostname, community, in snmp_xerox_phaser_printer_info()
257 snmp_qms_printer_info(char *hostname, char *community, char **manufacturer, in snmp_qms_printer_info() argument
271 tmp = snmp_get_string(hostname, community, in snmp_qms_printer_info()
279 *serial_no = snmp_get_string(hostname, community, in snmp_qms_printer_info()
281 tmp = snmp_get_string(hostname, community, in snmp_qms_printer_info()
284 tmp = snmp_get_string(hostname, community, in snmp_qms_printer_info()
294 snmp_oki_printer_info(char *hostname, char *community, char **manufacturer, in snmp_oki_printer_info() argument
306 tmp = snmp_get_string(hostname, community, in snmp_oki_printer_info()
314 *serial_no = snmp_get_string(hostname, community, in snmp_oki_printer_info()
322 snmp_hp_printer_info(char *hostname, char *community, char **manufacturer, in snmp_hp_printer_info() argument
334 tmp = snmp_get_string(hostname, community, in snmp_hp_printer_info()
342 *serial_no = snmp_get_string(hostname, community, in snmp_hp_printer_info()
350 snmp_ppm_printer_info(char *hostname, char *community, char **manufacturer, in snmp_ppm_printer_info() argument
361 tmp = snmp_get_string(hostname, community, in snmp_ppm_printer_info()
373 snmp_prt_printer_info(char *hostname, char *community, char **manufacturer, in snmp_prt_printer_info() argument
388 *manufacturer = snmp_get_string(hostname, community, in snmp_prt_printer_info()
391 *model = snmp_get_string(hostname, community, in snmp_prt_printer_info()
394 *serial_no = snmp_get_string(hostname, community, in snmp_prt_printer_info()
404 snmp_host_resource_printer_info(char *hostname, char *community, in snmp_host_resource_printer_info() argument
411 tmp = snmp_get_string(hostname, community, in snmp_host_resource_printer_info()
423 snmp_printer_info(char *hostname, char *community, char **manufacturer, in snmp_printer_info() argument
432 if (snmp_brother_printer_info(hostname, community, manufacturer, model, in snmp_printer_info()
435 } else if (snmp_ricoh_printer_info(hostname, community, manufacturer, in snmp_printer_info()
438 } else if (snmp_lexmark_printer_info(hostname, community, manufacturer, in snmp_printer_info()
441 } else if (snmp_xerox_phaser_printer_info(hostname, community, in snmp_printer_info()
445 } else if (snmp_qms_printer_info(hostname, community, manufacturer, in snmp_printer_info()
448 } else if (snmp_oki_printer_info(hostname, community, manufacturer, in snmp_printer_info()
451 } else if (snmp_hp_printer_info(hostname, community, manufacturer, in snmp_printer_info()
454 } else if (snmp_ppm_printer_info(hostname, community, manufacturer, in snmp_printer_info()
457 } else if (snmp_prt_printer_info(hostname, community, manufacturer, in snmp_printer_info()
460 } else if (snmp_host_resource_printer_info(hostname, community, in snmp_printer_info()
479 char *hostname = av[i], *manufacturer = NULL, *model = NULL, in main() local
484 rc = snmp_printer_info(hostname, &manufacturer, &model, in main()
486 printf("SNMP data for %s...(%d)\n", hostname, rc); in main()