Searched refs:keyword (Results 76 - 100 of 113) sorted by relevance

12345

/freebsd-13-stable/contrib/ntp/ntpdc/
H A Dntpdc.c43 /* We use COMMAND as an autogen keyword */
1183 * Save the keyword, then walk through the arguments, interpreting
1186 pcmd.keyword = tokens[0];
1328 for (cl = clist; cl->keyword != 0; cl++) {
1330 if (*str != *(cl->keyword))
1332 if (strncmp(str, cl->keyword, (unsigned)clen) == 0) {
1335 * Is exact if the length of the keyword is the
1338 if (*((cl->keyword) + clen) == '\0') {
1526 for (xcp = builtins; xcp->keyword != 0; xcp++) {
1527 if (*(xcp->keyword) !
[all...]
/freebsd-13-stable/sys/contrib/openzfs/etc/init.d/
H A Dzfs-mount.in59 keyword -lxc -openvz -prefix -vserver
H A Dzfs-import.in41 keyword -lxc -openvz -prefix -vserver
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/mmp/
H A Dmmp.kshlib31 function check_pool_import # pool opts token keyword
36 typeset keyword=$4
40 grep -i "$keyword" > /dev/null 2>&1
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redundancy/
H A Dredundancy.kshlib122 typeset keyword=$2
142 log_must zpool create -f -m $TESTDIR $pool $keyword $vdevs
/freebsd-13-stable/contrib/ntp/
H A Dbootstrap148 # ntp_parser.y hasn't been updated. At the same time, keyword-gen-utd
150 # keyword-gen.c.
152 touch ntpd/ntp_parser.[ch] ntpd/keyword-gen-utd ntpd/ntp_keyword.h
/freebsd-13-stable/share/mk/
H A Dlocal.gendirdeps.mk3 # we need a keyword, this noise is to prevent it being expanded
/freebsd-13-stable/contrib/byacc/
H A Dreader.c445 static struct keyword struct
486 const struct keyword *p = (const struct keyword *)a;
487 const struct keyword *q = (const struct keyword *)b;
492 keyword(void) function
496 struct keyword *key;
694 /* read %code <keyword> { */
1808 switch (k = keyword())
2386 switch (keyword())
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp638 llvm::StringRef keyword,
648 properties->Apropos(keyword, matching_properties);
652 if (name.contains_lower(keyword))
656 if (desc.contains_lower(keyword))
637 Apropos( llvm::StringRef keyword, std::vector<const Property *> &matching_properties) const argument
/freebsd-13-stable/contrib/dialog/po/
H A Dmakefile.inn88 --add-comments --keyword=_ --keyword=N_ \
/freebsd-13-stable/usr.bin/indent/
H A Dindent_globs.h312 int keyword; /* the type of a keyword or 0 */ member in struct:parser_state
H A Dindent.c119 int last_else = 0; /* true iff last keyword was an else */
605 ps.keyword + opt.Bill_Shannon > 2))
624 if (ps.keyword == 1 || ps.keyword == 2)
919 case swstmt: /* got keyword "switch" */
/freebsd-13-stable/contrib/ldns/
H A Dresolver.c768 const char *keyword[LDNS_RESOLV_KEYWORDS]; local
790 * 0: keyword
796 keyword[LDNS_RESOLV_NAMESERVER] = "nameserver";
797 keyword[LDNS_RESOLV_DEFDOMAIN] = "domain";
798 keyword[LDNS_RESOLV_SEARCH] = "search";
800 keyword[LDNS_RESOLV_SORTLIST] = "sortlist";
801 keyword[LDNS_RESOLV_OPTIONS] = "options";
802 keyword[LDNS_RESOLV_ANCHOR] = "anchor";
834 /* keyword */
839 if (strcasecmp(keyword[
[all...]
/freebsd-13-stable/contrib/openresolv/
H A Dresolvconf.in563 while read -r keyword value; do
570 case "$keyword" in
586 case "$keyword" in
596 printf "%s %s\n" "$keyword" "$val"
/freebsd-13-stable/crypto/openssh/
H A Dreadconf.c847 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2; local
877 /* Get the keyword. (Each line is supposed to begin with a keyword). */
878 if ((keyword = strdelim(&s)) == NULL)
881 if (*keyword == '\0')
882 keyword = strdelim(&s);
883 if (keyword == NULL || !*keyword || *keyword == '\n' || *keyword
[all...]
/freebsd-13-stable/contrib/ntp/ntpq/
H A Dntpq.c60 /* we use COMMAND as an autogen keyword */
532 if (strcmp("keytype", builtins[icmd].keyword) == 0) {
1639 * Save the keyword, then walk through the arguments, interpreting
1642 pcmd.keyword = tokens[0];
1887 for (cl = clist; cl->keyword != 0; cl++) {
1889 if (*str != *(cl->keyword))
1891 if (strncmp(str, cl->keyword, (unsigned)clen) == 0) {
1894 * Is exact if the length of the keyword is the
1897 if (*((cl->keyword) + clen) == '\0') {
2330 for (xcp = builtins; xcp->keyword !
[all...]
/freebsd-13-stable/contrib/unbound/util/
H A Dconfiglexer.lex666 ub_c_error_msg("unknown keyword '%s'", ub_c_text);
/freebsd-13-stable/contrib/ntp/ntpd/
H A DMakefile.in98 EXTRA_PROGRAMS = check_y2k$(EXEEXT) keyword-gen$(EXEEXT) ntpd$(EXEEXT) \
204 keyword_gen_SOURCES = keyword-gen.c
205 keyword_gen_OBJECTS = keyword-gen.$(OBJEXT)
270 SOURCES = $(libntpd_a_SOURCES) check_y2k.c keyword-gen.c \
272 DIST_SOURCES = $(libntpd_a_SOURCES) check_y2k.c keyword-gen.c \
662 keyword-gen \
683 keyword-gen-utd \
1046 keyword-gen$(EXEEXT): $(keyword_gen_OBJECTS) $(keyword_gen_DEPENDENCIES) $(EXTRA_keyword_gen_DEPENDENCIES)
1047 @rm -f keyword-gen$(EXEEXT)
1069 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keyword
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueProperties.h57 void Apropos(llvm::StringRef keyword,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp68 return options.keyword;
/freebsd-13-stable/sbin/route/
H A Droute.c121 static int keyword(const char *);
163 warnx("bad keyword: %s", cp);
237 switch (keyword(*argv)) {
406 switch (keyword(*argv + 1)) {
819 switch (key = keyword(1 + *argv)) {
1419 switch (keyword(*argv + 1)) {
1840 keyword(const char *cp) function
/freebsd-13-stable/sys/dev/pci/
H A Dpcivar.h69 char keyword[2]; member in struct:vpd_readonly
75 char keyword[2]; member in struct:vpd_write
H A Dpci_user.c593 * Copyout the identifier string followed by each keyword and
611 vpd_element.pve_keyword[0] = vpd->vpd_ros[i].keyword[0];
612 vpd_element.pve_keyword[1] = vpd->vpd_ros[i].keyword[1];
625 vpd_element.pve_keyword[0] = vpd->vpd_w[i].keyword[0];
626 vpd_element.pve_keyword[1] = vpd->vpd_w[i].keyword[1];
/freebsd-13-stable/contrib/netcat/
H A Dnetcat.c1349 const char *keyword; member in struct:toskeywords
1382 for (t = toskeywords; t->keyword != NULL; t++) {
1383 if (strcmp(s, t->keyword) == 0) {
/freebsd-13-stable/crypto/openssh/regress/
H A Dnetcat.c1206 const char *keyword; member in struct:toskeywords
1239 for (t = toskeywords; t->keyword != NULL; t++) {
1240 if (strcmp(s, t->keyword) == 0) {

Completed in 164 milliseconds

12345