HomeSort by relevance Sort by last modified time
    Searched defs:help (Results 276 - 300 of 538) sorted by null

<<11121314151617181920>>

  /external/iw/
iw.h 44 const char *help; member in struct:cmd
77 .help = (_help), \
84 #define COMMAND(section, name, args, cmd, flags, idby, handler, help) \
85 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help, NULL)
86 #define COMMAND_ALIAS(section, name, args, cmd, flags, idby, handler, help, selector, alias)\
87 __ACMD(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help, selector, alias)
101 .help = (_help), \
  /external/kmod/tools/
modinfo.c 326 {"help", no_argument, 0, 'h'},
330 static void help(void) function
345 "\t-h, --help Show this help\n",
404 help();
466 .help = "compat modinfo command",
  /external/libedit/src/
el.c 298 Char *help = va_arg(ap, Char *); local
301 rv = map_addfunc(el, name, help, func);
  /external/libxml2/xstc/
xstc.py 16 help="""The base directory; i.e. the parent folder of the
21 help="The filepath of the log file to be created") variable
25 help="Create the log file") variable
29 help="Don't output test results") variable
32 help="Disables display of all tests") variable
36 help="Displays all tests (only if --silent is not set)") variable
40 help="The maximum number of tests to be run") variable
44 help="Runs the specified test only") variable
48 help="Runs the specified test(s), starting with the given string") variable
52 help="Display erroneous tests of type 'internal' only" variable
56 help="Display erroneous tests of type 'unimplemented' only") variable
60 help="Display erroneous tests of type 'memory leak' only") variable
64 help="Combines to be run (all if omitted)") variable
68 help="Combines to be run (all if omitted)") variable
72 help="Display combine reports") variable
76 help="Display erroneous combine reports only") variable
80 help="Displays debug messages") variable
84 help="Displays info on the suite only. Does not run any test.") variable
87 help="Use SAX2-driven validation.") variable
90 help="Display the test name in every case.") variable
    [all...]
  /external/llvm/utils/
extract_symbols.py 326 required=True, help='expected symbol mangling scheme')
328 help='tools to use to extract symbols and determine the' variable
331 help='libraries to extract symbols from') variable
332 parser.add_argument('-o', metavar='file', type=str, help='output to file')
  /external/ltp/include/
tst_test.h 93 char *help; member in struct:tst_option
  /external/ltp/lib/
parse_opts.c 83 char *help; member in struct:std_option_t
87 {"h", " -h Show this help screen\n", NULL, NULL},
130 if (std_options[i].help)
131 printf("%s", std_options[i].help);
217 case 'h': /* Help */
578 int Help = 0;
587 {"help", &Help2, NULL}, /* -help option */
588 {"h", &Help, NULL}, /* -h option */
592 {"missingarg:", &Help, NULL}, /* error *
    [all...]
  /external/ltp/testcases/kernel/controllers/cgroup_xattr/
cgroup_xattr.c 106 static void help(void);
134 static void help(void) function
146 tst_parse_opts(argc, argv, options, help);
  /external/ltp/testcases/kernel/fs/proc/
proc01.c 199 void help(void) function
440 tst_parse_opts(argc, argv, options, help);
  /external/ltp/testcases/kernel/io/aio/aio01/
aio01.c 70 static void help(void);
114 tst_parse_opts(argc, argv, options, &help);
354 static void help(void) function
  /external/ltp/testcases/kernel/io/direct_io/
dma_thread_diotest.c 127 static void help(void);
234 tst_parse_opts(argc, argv, options, help);
438 static void help(void) function
  /external/ltp/testcases/kernel/syscalls/cma/
process_vm01.c 76 static void help(void);
86 tst_parse_opts(argc, argv, options, &help);
129 static void help(void) function
  /external/ltp/testcases/kernel/syscalls/kill/
kill10.c 161 void help();
219 tst_parse_opts(ac, av, options, &help);
273 void help(void) function
  /external/ltp/testcases/kernel/syscalls/readahead/
readahead02.c 72 static void help(void) function
358 tst_parse_opts(argc, argv, options, help);
  /external/ltp/testcases/misc/crash/
crash01.c 117 void help(void) function
154 tst_parse_opts(argc, argv, options, help);
crash02.c 111 void help(void) function
143 tst_parse_opts(argc, argv, options, help);
  /external/mmc-utils/
mmc.c 39 char *help; /* help lines; from the 2nd line onward they member in struct:Command
41 char *adv_help; /* advanced help message; from the 2nd line
206 for(pc = cmd->help; *pc; pc++){
215 static void help(char *np) function
223 printf("\n\t%s help|--help|-h\n\t\tShow the help.\n",np);
224 printf("\n\t%s <cmd> --help\n\t\tShow detailed help for a command or subset of commands.\n",np)
    [all...]
  /external/nanopb-c/generator/
nanopb_generator.py 961 help="Exclude file from generated #include list.") variable
963 help="Set extension to use instead of 'pb' for generated files. [default: %default]") variable
965 help="Set name of a separate generator options file.") variable
968 help="Set format string to use for including other .pb.h files. [default: %default]") variable
971 help="Set format string to use for including the nanopb pb.h header. [default: %default]") variable
973 help="Don't add timestamp to .pb.h and .pb.c preambles") variable
975 help="Don't print anything except errors.") variable
977 help="Print more information.") variable
979 help="Set generator option (max_size, max_count etc.).") variable
    [all...]
  /external/python/cpython2/Lib/
nntplib.py 370 def help(self, file=None): member in class:NNTP
371 """Process a HELP command. Returns:
375 return self.longcmd('HELP',file)
  /external/python/cpython2/Modules/
main.c 31 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
66 -h : print this help message and exit (also --help)\n\
251 int help = 0; local
419 help++;
442 if (help)
  /external/python/cpython2/Tools/pybench/
CommandLine.py 165 def __init__(self,name,help=None):
174 if help:
175 self.help = help
187 description = o.help
199 def __init__(self,name,help=None,default=None):
202 Option.__init__(self,name,help)
214 def __init__(self,name,help=None,default=None):
217 Option.__init__(self,name,help)
238 'show this help text')
491 def help(self,note=''): member in class:Application
    [all...]
  /external/python/cpython3/Lib/http/
server.py 1198 help='Run as CGI Server') variable
1200 help='Specify alternate bind address ' variable
1205 help='Specify alternate port [default: 8000]') variable
    [all...]
  /external/python/cpython3/Tools/pybench/
CommandLine.py 167 def __init__(self,name,help=None):
176 if help:
177 self.help = help
189 description = o.help
201 def __init__(self,name,help=None,default=None):
204 Option.__init__(self,name,help)
216 def __init__(self,name,help=None,default=None):
219 Option.__init__(self,name,help)
240 'show this help text')
495 def help(self,note=''): member in class:Application
    [all...]
  /external/skia/tools/flags/
SkCommandLineFlags.cpp 152 // Maximum line length for the help message.
202 const SkString& help = flag->help(); local
203 print_indented(help);
234 if (0 == strcmp("-h", argv[i]) || 0 == strcmp("--help", argv[i])) {
235 // Print help message.
244 // Only print general help message if help for specific flags is not requested.
252 // If no flags followed --help, print them all
263 SkDebugf(" Use '--help %s' for more information.\n"
    [all...]
  /external/skqp/tools/flags/
SkCommandLineFlags.cpp 152 // Maximum line length for the help message.
202 const SkString& help = flag->help(); local
203 print_indented(help);
234 if (0 == strcmp("-h", argv[i]) || 0 == strcmp("--help", argv[i])) {
235 // Print help message.
244 // Only print general help message if help for specific flags is not requested.
252 // If no flags followed --help, print them all
263 SkDebugf(" Use '--help %s' for more information.\n"
    [all...]

Completed in 910 milliseconds

<<11121314151617181920>>