Lines Matching refs:code
679 lookup_opcode_name(ServerOpCodes code) in lookup_opcode_name() argument
684 if (keywords[i].opcode == code) in lookup_opcode_name()
2411 fmt_intarg(ServerOpCodes code, int val) in fmt_intarg() argument
2415 switch (code) { in fmt_intarg()
2443 dump_cfg_int(ServerOpCodes code, int val) in dump_cfg_int() argument
2445 printf("%s %d\n", lookup_opcode_name(code), val); in dump_cfg_int()
2449 dump_cfg_oct(ServerOpCodes code, int val) in dump_cfg_oct() argument
2451 printf("%s 0%o\n", lookup_opcode_name(code), val); in dump_cfg_oct()
2455 dump_cfg_fmtint(ServerOpCodes code, int val) in dump_cfg_fmtint() argument
2457 printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val)); in dump_cfg_fmtint()
2461 dump_cfg_string(ServerOpCodes code, const char *val) in dump_cfg_string() argument
2463 printf("%s %s\n", lookup_opcode_name(code), in dump_cfg_string()
2468 dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray() argument
2473 printf("%s %s\n", lookup_opcode_name(code), vals[i]); in dump_cfg_strarray()
2477 dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray_oneline() argument
2481 if (count <= 0 && code != sAuthenticationMethods) in dump_cfg_strarray_oneline()
2483 printf("%s", lookup_opcode_name(code)); in dump_cfg_strarray_oneline()
2486 if (code == sAuthenticationMethods && count == 0) in dump_cfg_strarray_oneline()