Lines Matching refs:_usage
388 _usage, _help, _comp) \ argument
390 _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
393 _usage, _help, _comp) \ argument
396 _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
398 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \ argument
401 _usage, _help, _comp);
403 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ argument
407 _usage, _help, _comp)
430 _usage, _help, _comp) \ argument
431 { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \
434 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \ argument
436 { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \
439 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \ argument
443 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ argument
449 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \ argument
450 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
452 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \ argument
454 _usage, _help, NULL)
465 #define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \ argument
468 _usage, _help, complete_##_name)