/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
nouveau_nvkm_core_option.c | 33 nvkm_stropt(const char *optstr, const char *opt, int *arglen) 35 while (optstr && *optstr != '\0') { 36 int len = strcspn(optstr, ",="); 37 switch (optstr[len]) { 39 if (!strncasecmpz(optstr, opt, len)) { 40 optstr += len + 1; 41 *arglen = strcspn(optstr, ",="); 42 return *arglen ? optstr : NULL; 44 optstr++ [all...] |
/src/sys/kern/ |
subr_optstr.c | 36 #include <sys/optstr.h> 49 optstr_get_pointer(const char *optstr, const char *key, const char **result) 54 while (*optstr == ' ' || *optstr == '\t') 55 optstr++; 58 while (!found && *optstr != '\0') { 63 while (*optstr == *keyp) { 64 optstr++; 68 if (*optstr == '=' && *keyp == '\0') 72 while (*optstr != ' ' && *optstr != '\0' [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
option.h | 8 const char *nvkm_stropt(const char *optstr, const char *opt, int *len); 9 bool nvkm_boolopt(const char *optstr, const char *opt, bool value); 10 long nvkm_longopt(const char *optstr, const char *opt, long value); 11 int nvkm_dbgopt(const char *optstr, const char *sub);
|
/src/usr.sbin/bootp/bootptest/ |
print-bootp.c | 284 const char *optstr; 300 optstr = rfc1048_opts[tag]; 301 printf(" %s:", optstr + 1); 304 optstr = "?"; 314 switch (optstr[0]) { 283 const char *optstr; local in function:rfc1048_print
|
/src/sbin/fsck/ |
fsck.c | 444 addoption(char *optstr) 449 if ((newoptions = strchr(optstr, ':')) == NULL) 455 if (!strcmp(e->type, optstr)) { 459 addentry(&opthead, optstr, newoptions);
|
/src/bin/sh/ |
options.c | 576 getopts(char *optstr, char *optvar, char **optfirst, char ***optnext, char **optpptr) 604 for (q = optstr; *q != c; ) { 606 if (optstr[0] == ':') { 623 if (optstr[0] == ':') {
|
/src/usr.sbin/perfused/ |
perfused.c | 317 parse_debug(char *optstr) 323 for (opt = strtok_r(optstr, ",", &lastp);
|
/src/usr.bin/grep/ |
grep.c | 167 static const char optstr[] = variable in typeref:typename:const char[] 402 while (((c = getopt_long(aargc, aargv, optstr, long_options, NULL)) !=
|
/src/sys/compat/ultrix/ |
ultrix_fs.c | 324 char *optstr; /* string of nfs mount options*/ member in struct:ultrix_nfs_args
|
/src/sys/dev/fdt/ |
fdt_boot.c | 71 #include <sys/optstr.h>
|
/src/sys/arch/i386/i386/ |
multiboot.c | 43 #include <sys/optstr.h>
|
/src/share/man/man9/ |
Makefile | 43 namei.9 nullop.9 opencrypto.9 optstr.9 \ 619 MLINKS+=optstr.9 optstr_get.9
|
/src/sys/arch/x86/x86/ |
multiboot2.c | 43 #include <sys/optstr.h>
|
/src/sys/arch/riscv/riscv/ |
riscv_machdep.c | 52 #include <sys/optstr.h>
|