| /src/external/bsd/zstd/dist/contrib/pzstd/ |
| main.cpp | 10 #include "Options.h" 16 Options options; local 17 switch (options.parse(argc, argv)) { 18 case Options::Status::Failure: 20 case Options::Status::Message: 26 return pzstdMain(options);
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/ |
| hello.cc | 21 // Comment line options. 23 static KCmdLineOptions options[] = variable 25 { 0, 0, 0 } // End of options. 55 KCmdLineArgs::addCmdLineOptions (options);
|
| /src/sys/arch/i386/stand/lib/ |
| menuutils.c | 48 char *options; local 51 options = gettrailer(arg); 55 (*commands[i].c_fn)(options);
|
| parseutils.c | 53 char *options; local 55 for (options = arg; *options; options++) { 56 switch (*options) { 59 *options++ = '\0'; 66 if (*options == '\0') 67 return options; 70 while (*options == ' ' || *options == '\t' [all...] |
| /src/sys/arch/x68k/stand/libsa/ |
| parseutils.c | 59 char *options; local 61 if ((options = strchr(arg, ' ')) == NULL) 64 *options++ = '\0'; 67 while (*options == ' ') 68 options++; 70 return options; 127 /* now, deal with options */
|
| /src/usr.bin/vndcompress/ |
| main.c | 44 static int (*operation)(int, char **, const struct options *) = &vndcompress; 49 static const struct options zero_options; 50 struct options options = zero_options, *O = &options; local
|
| /src/external/bsd/mdocml/dist/ |
| test-getsubopt.c | 31 char *options = buf; local 35 return ! (getsubopt(&options, tokens, &value) == 0 36 && value == buf+2 && options == buf+3);
|
| /src/external/gpl2/xcvs/dist/src/ |
| no_diff.c | 32 char *ts, *options; local 52 if (vers->entdata && vers->entdata->options) 53 options = xstrdup (vers->entdata->options); 55 options = xstrdup (""); 58 retcode = RCS_cmp_file (vers->srcfile, vers->vn_user, NULL, NULL, options, 66 options, vers->tag, vers->date, NULL); 96 free (options);
|
| /src/external/mit/isl/dist/ |
| closure.c | 3 #include <isl/options.h> 9 struct isl_options *options; local 13 options = isl_options_new_with_defaults(); 14 assert(options); 15 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL); 17 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
|
| flow.c | 13 #include <isl/options.h> 25 struct isl_options *options; local 27 options = isl_options_new_with_defaults(); 28 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL); 29 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
|
| polyhedron_remove_redundant_equalities.c | 14 #include <isl/options.h> 26 struct isl_options *options; local 28 options = isl_options_new_with_defaults(); 29 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL); 30 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
|
| schedule.c | 14 #include <isl/options.h> 24 struct isl_options *options; local 26 options = isl_options_new_with_defaults(); 27 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL); 28 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
|
| /src/external/mit/libuv/dist/docs/code/detach/ |
| main.c | 7 uv_process_options_t options; variable 17 options.exit_cb = NULL; 18 options.file = "sleep"; 19 options.args = args; 20 options.flags = UV_PROCESS_DETACHED; 23 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mit/libuv/dist/docs/code/spawn/ |
| main.c | 8 uv_process_options_t options; variable 23 options.exit_cb = on_exit; 24 options.file = "mkdir"; 25 options.args = args; 28 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| re_compile_checker.py | 35 options = () variable in class:ReCompileChecker
|
| /src/external/public-domain/xz/dist/src/liblzma/api/lzma/ |
| filter.h | 30 * \brief Filter options 33 * options to liblzma. A few functions work with a single lzma_filter 57 * \brief Pointer to filter-specific options structure 59 * If the filter doesn't need options, set this to NULL. If id is 60 * set to LZMA_VLI_UNKNOWN, options is ignored, and thus 63 void *options; member in struct:__anon24568 76 * couldn't know what kind of options the filter would need. 95 * Copy the Filter IDs and filter-specific options from src to dest. 101 * Unless the filter-specific options is NULL, the Filter ID has to be 103 * filter-specific options structure. The filter-specific options are no [all...] |
| /src/usr.bin/find/ |
| option.c | 59 static OPTION const options[] = { variable 106 * Unimplemented Gnu findutils options 187 return ((OPTION *)bsearch(&tmp, options, 188 sizeof(options)/sizeof(OPTION), sizeof(OPTION), typecompare));
|
| /src/usr.bin/rdist/ |
| gram.y | 77 %type <intval> OPTION, options 142 cmd: INSTALL options opt_namelist SM = { 145 $1->sc_options = $2 | options; 181 options: /* VOID */ = { label 184 | options OPTION = {
|
| /src/external/gpl3/binutils/dist/binutils/ |
| objdump.h | 39 /* Return TRUE if these options can be applied to ABFD. */ 43 options whose SELECTED field is set. */ 46 /* List of options. Terminated by a NULL name. */ 47 struct objdump_private_option *options; member in struct:objdump_private_desc
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| objdump.h | 39 /* Return TRUE if these options can be applied to ABFD. */ 43 options whose SELECTED field is set. */ 46 /* List of options. Terminated by a NULL name. */ 47 struct objdump_private_option *options; member in struct:objdump_private_desc
|
| /src/external/mit/libuv/dist/docs/code/proc-streams/ |
| main.c | 9 uv_process_options_t options; variable 30 options.stdio_count = 3; 36 options.stdio = child_stdio; 38 options.exit_cb = on_exit; 39 options.file = args[0]; 40 options.args = args; 43 if ((r = uv_spawn(loop, &child_req, &options))) {
|
| /src/external/zlib/pigz/dist/zopfli/ |
| lz77.h | 60 const ZopfliOptions* options; member in struct:ZopfliBlockState
|
| /src/sys/compat/linux32/common/ |
| linux32_wait.c | 81 syscallarg(int) options; 87 SCARG(&ua, options) = SCARG(uap, options); 99 syscallarg(int) options; 102 int error, status, linux_options, options, pid; local 107 linux_options = SCARG(uap, options); 111 options = 0; 113 options |= WNOHANG; 115 options |= WUNTRACED; 117 options |= WALLSIG [all...] |
| /src/sys/stand/efiboot/ |
| prompt.c | 50 char *options; local 52 for (options = arg; *options; options++) { 53 switch (*options) { 56 *options++ = '\0'; 63 if (*options == '\0') 64 return options; 67 while (*options == ' ' || *options == '\t' 133 char *options; local [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| asn1_stable_parse_test.c | 22 const OPTIONS *test_get_options(void) 24 static const OPTIONS options[] = { local 30 return options;
|