Home
last modified time | relevance | path

Searched refs:pcf_param_table (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/ibm-public/postfix/dist/src/postconf/
H A Dpostconf_builtin.c396 if (pcf_param_table != 0) in pcf_register_builtin_parameters()
402 pcf_param_table = PCF_PARAM_TABLE_CREATE(1000); in pcf_register_builtin_parameters()
410 PCF_PARAM_TABLE_ENTER(pcf_param_table, ctt->name, in pcf_register_builtin_parameters()
414 PCF_PARAM_TABLE_ENTER(pcf_param_table, cbt->name, in pcf_register_builtin_parameters()
418 PCF_PARAM_TABLE_ENTER(pcf_param_table, cit->name, in pcf_register_builtin_parameters()
422 PCF_PARAM_TABLE_ENTER(pcf_param_table, cst->name, in pcf_register_builtin_parameters()
426 PCF_PARAM_TABLE_ENTER(pcf_param_table, cft->name, in pcf_register_builtin_parameters()
430 PCF_PARAM_TABLE_ENTER(pcf_param_table, rst->name, in pcf_register_builtin_parameters()
434 PCF_PARAM_TABLE_ENTER(pcf_param_table, nst->name, in pcf_register_builtin_parameters()
438 PCF_PARAM_TABLE_ENTER(pcf_param_table, bst->name, in pcf_register_builtin_parameters()
[all …]
H A Dpostconf_user.c154 if (PCF_PARAM_TABLE_LOCATE(pcf_param_table, mac_name) == 0) { in pcf_flag_user_parameter()
155 PCF_PARAM_TABLE_ENTER(pcf_param_table, mac_name, param_class, in pcf_flag_user_parameter()
197 && PCF_PARAM_TABLE_LOCATE(pcf_param_table, mac_name) == 0) in pcf_flag_user_parameter()
286 if ((node = PCF_PARAM_TABLE_FIND(pcf_param_table, cparam_name)) != 0) { in pcf_scan_user_parameter_namespace()
366 if (pcf_param_table == 0) in pcf_register_user_parameters()
417 pcf_scan_default_parameter_values(pcf_param_table, CONFIG_DICT, in pcf_register_user_parameters()
H A Dpostconf_service.c111 if ((node = PCF_PARAM_TABLE_FIND(pcf_param_table, name)) != 0) { in pcf_register_service_parameter()
114 PCF_PARAM_TABLE_ENTER(pcf_param_table, name, PCF_PARAM_FLAG_SERVICE, in pcf_register_service_parameter()
176 if (pcf_param_table == 0) in pcf_register_service_parameters()
H A Dpostconf_main.c199 list = PCF_PARAM_TABLE_LIST(pcf_param_table); in pcf_show_parameters()
200 qsort((void *) list, pcf_param_table->used, sizeof(*list), in pcf_show_parameters()
214 if ((node = PCF_PARAM_TABLE_FIND(pcf_param_table, *namep)) == 0) { in pcf_show_parameters()
H A Dpostconf_unused.c70 if (pcf_param_table == 0) in pcf_flag_unused_parameters()
83 if (PCF_PARAM_TABLE_LOCATE(pcf_param_table, param_name) == 0 in pcf_flag_unused_parameters()
H A Dpostconf_lookup.c130 if (node != 0 || (node = PCF_PARAM_TABLE_FIND(pcf_param_table, name)) != 0) in pcf_lookup_parameter_value()
H A Dpostconf.h96 extern PCF_PARAM_TABLE *pcf_param_table;
H A Dpostconf.c628 PCF_PARAM_TABLE *pcf_param_table; variable