Lines Matching refs:code
714 lookup_opcode_name(ServerOpCodes code) in lookup_opcode_name() argument
719 if (keywords[i].opcode == code) in lookup_opcode_name()
2747 fmt_intarg(ServerOpCodes code, int val) in fmt_intarg() argument
2751 switch (code) { in fmt_intarg()
2781 dump_cfg_int(ServerOpCodes code, int val) in dump_cfg_int() argument
2783 printf("%s %d\n", lookup_opcode_name(code), val); in dump_cfg_int()
2787 dump_cfg_oct(ServerOpCodes code, int val) in dump_cfg_oct() argument
2789 printf("%s 0%o\n", lookup_opcode_name(code), val); in dump_cfg_oct()
2793 dump_cfg_fmtint(ServerOpCodes code, int val) in dump_cfg_fmtint() argument
2795 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val)); in dump_cfg_fmtint()
2799 dump_cfg_string(ServerOpCodes code, const char *val) in dump_cfg_string() argument
2801 printf("%s %s\n", lookup_opcode_name(code), in dump_cfg_string()
2806 dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray() argument
2811 printf("%s %s\n", lookup_opcode_name(code), vals[i]); in dump_cfg_strarray()
2815 dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray_oneline() argument
2819 if (count <= 0 && code != sAuthenticationMethods) in dump_cfg_strarray_oneline()
2821 printf("%s", lookup_opcode_name(code)); in dump_cfg_strarray_oneline()
2824 if (code == sAuthenticationMethods && count == 0) in dump_cfg_strarray_oneline()