Lines Matching refs:_usage
412 _usage, _help, _comp) \ argument
414 _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
417 _usage, _help, _comp) \ argument
420 _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
422 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \ argument
425 _usage, _help, _comp)
427 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ argument
431 _usage, _help, _comp)
454 _usage, _help, _comp) \ argument
455 { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \
458 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \ argument
460 { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \
463 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \ argument
467 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ argument
473 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \ argument
474 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
476 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \ argument
478 _usage, _help, NULL)
489 #define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \ argument
492 _usage, _help, complete_##_name)