Home
last modified time | relevance | path

Searched refs:keyword (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/freebsd-13-stable/contrib/ldns/
HDlibdns.vim7 syn keyword ldnsMacro LDNS_MALLOC
8 syn keyword ldnsMacro LDNS_XMALLOC
9 syn keyword ldnsMacro LDNS_CALLOC
10 syn keyword ldnsMacro LDNS_REALLOC
11 syn keyword ldnsMacro LDNS_XREALLOC
12 syn keyword ldnsMacro LDNS_FREE
13 syn keyword ldnsMacro LDNS_DEP
14 syn keyword ldnsMacro LDNS_VERSION
15 syn keyword ldnsMacro LDNS_REVISION
18 syn keyword ldnsMacro LDNS_DNAME_NORMALIZE
[all …]
HDparse.c258 ldns_fget_keyword_data(FILE *f, const char *keyword, const char *k_del, char *data, in ldns_fget_keyword_data() argument
261 return ldns_fget_keyword_data_l(f, keyword, k_del, data, d_del, in ldns_fget_keyword_data()
266 ldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del, char *data, in ldns_fget_keyword_data_l() argument
273 if(strlen(keyword) >= LDNS_MAX_KEYWORDLEN) in ldns_fget_keyword_data_l()
286 if (strncmp(fkeyword, keyword, LDNS_MAX_KEYWORDLEN - 1) == 0) { in ldns_fget_keyword_data_l()
485 ldns_bget_keyword_data(ldns_buffer *b, const char *keyword, const char *k_del, char in ldns_bget_keyword_data() argument
492 if(strlen(keyword) >= LDNS_MAX_KEYWORDLEN) in ldns_bget_keyword_data()
505 if (strncmp(fkeyword, keyword, strlen(keyword)) == 0) { in ldns_bget_keyword_data()
/freebsd-13-stable/tools/tools/genericize/
HDgenericize.pl48 my ($keyword, $values) = split(' ', $_, 2);
50 if ($keyword eq 'machine') {
52 } elsif ($keyword eq 'ident') {
54 } elsif ($keyword eq 'options' && $value =~ m/(\w+)=(.+)/) {
55 $config{$keyword}->{$1} = $2;
57 $config{$keyword}->{$value} = \∅
86 my ($keyword, $value) = split(' ', $_);
87 if ($keyword eq 'machine') {
90 } elsif ($keyword eq 'ident') {
92 } elsif ($keyword eq 'options' && $value =~ m/(\w+)=(.+)/ &&
[all …]
/freebsd-13-stable/crypto/openssh/regress/unittests/authopt/
HDtests.c201 #define FLAG_TEST(keyword, var, val) \ in test_authkeys_parse() argument
203 TEST_START("sshauthopt_parse " keyword); \ in test_authkeys_parse()
206 opts = sshauthopt_parse(keyword, &errstr); \ in test_authkeys_parse()
210 opts = sshauthopt_parse("restrict,"keyword, &errstr); \ in test_authkeys_parse()
231 #define STRING_TEST(keyword, var, val) \ in test_authkeys_parse() argument
233 TEST_START("sshauthopt_parse " keyword); \ in test_authkeys_parse()
237 opts = sshauthopt_parse(keyword "=" #val, &errstr); \ in test_authkeys_parse()
243 "restrict," keyword "=" #val ",restrict", &errstr); \ in test_authkeys_parse()
438 #define FLAG_TEST(keybase, keyword, var) \ in test_merge() argument
441 "no_" keybase, keyword, 0, var, 0); \ in test_merge()
[all …]
/freebsd-13-stable/tests/sys/cddl/zfs/tests/history/
HDhistory_common.kshlib212 typeset keyword=$4
216 log_note "Checking cmd($subcmd) for $ds, keyword='$keyword'"
218 $GREP $keyword >/dev/null 2>&1
237 typeset keyword=$4
245 keyword="$subcmd"
246 verify_history_line "$line" $subcmd $ds $keyword
252 verify_history_line "$line" "$_subcmd" $ds "$keyword"
258 verify_history_line "$line" "$_subcmd" $ds "$keyword"
/freebsd-13-stable/tests/sys/cddl/zfs/tests/online_offline/
HDonline_offline_002_neg.ksh35 keyword="$1"
39 case "$keyword" in
72 for keyword in "" "mirror" "raidz" "raidz2"; do
74 default_setup_noexit "$keyword $DISKS"
75 verify_assertion "$keyword"
/freebsd-13-stable/contrib/netbsd-tests/bin/ps/
HDkeywords5 # The first column (keyword) is the name of a keyword.
8 # with the keyword, except if the keyword is an alias, in which case the
9 # second column is the name of another keyword.
12 # means that the keyword is an alias. "LJUST" means that the keyword
14 # the keyword should be displayed in a right-justified column.
16 # keyword header flag
/freebsd-13-stable/crypto/openssh/
HDservconf.c1326 char *str, ***chararrayptr, **charptr, *arg, *arg2, *p, *keyword; in process_server_config_line_depth() local
1355 if ((keyword = strdelim(&str)) == NULL) in process_server_config_line_depth()
1358 if (*keyword == '\0') in process_server_config_line_depth()
1359 keyword = strdelim(&str); in process_server_config_line_depth()
1360 if (!keyword || !*keyword || *keyword == '#') in process_server_config_line_depth()
1364 filename, linenum, keyword); in process_server_config_line_depth()
1369 opcode = parse_token(keyword, filename, linenum, &flags); in process_server_config_line_depth()
1383 debug3("%s:%d setting %s %s", filename, linenum, keyword, str); in process_server_config_line_depth()
1387 "within a Match block", filename, linenum, keyword); in process_server_config_line_depth()
1629 filename, linenum, keyword, arg); in process_server_config_line_depth()
[all …]
/freebsd-13-stable/usr.sbin/makefs/
HDmtree.c480 char keyword[PATH_MAX]; in read_mtree_keywords() local
496 error = read_word(fp, keyword, sizeof(keyword)); in read_mtree_keywords()
500 if (keyword[0] == '\0') in read_mtree_keywords()
503 value = strchr(keyword, '='); in read_mtree_keywords()
519 switch (keyword[0]) { in read_mtree_keywords()
521 if (strcmp(keyword, "contents") == 0) { in read_mtree_keywords()
531 if (strcmp(keyword, "flags") == 0) { in read_mtree_keywords()
548 if (strcmp(keyword, "gid") == 0) { in read_mtree_keywords()
557 } else if (strcmp(keyword, "gname") == 0) { in read_mtree_keywords()
570 if (strcmp(keyword, "link") == 0) { in read_mtree_keywords()
[all …]
/freebsd-13-stable/stand/usb/tools/
HDsysinit.c45 static const char *keyword; variable
184 keyword = optarg; in main()
195 struct_name == NULL || keyword == NULL) in main()
261 if (strcmp(keyword, "sysinit") == 0) in main()
263 else if (strcmp(keyword, "sysuninit") == 0) in main()
266 errx(EX_USAGE, "Unknown keyword '%s'", keyword); in main()
287 if (strcmp((const char *)(*sipp)->b_keyword_name, keyword)) in do_sysinit()
313 if (strcmp((const char *)(*sipp)->b_keyword_name, keyword)) in do_sysinit()
/freebsd-13-stable/sys/dev/sfxge/common/
HDefx_vpd.c442 efx_vpd_keyword_t keyword; in efx_vpd_next_keyword() local
451 keyword = EFX_VPD_KEYWORD(tag[pos], tag[pos + 1]); in efx_vpd_next_keyword()
459 *keywordp = keyword; in efx_vpd_next_keyword()
511 efx_vpd_keyword_t keyword; in efx_vpd_hunk_verify() local
544 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_verify()
547 if (keyword == EFX_VPD_KEYWORD('R', 'V')) { in efx_vpd_hunk_verify()
664 efx_vpd_keyword_t keyword = 0; in efx_vpd_hunk_next() local
681 keyword = 0; in efx_vpd_hunk_next()
690 keyword = 0; in efx_vpd_hunk_next()
698 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_next()
[all …]
/freebsd-13-stable/contrib/unbound/sldns/
HDparse.c227 sldns_fget_keyword_data(FILE *f, const char *keyword, const char *k_del, char *data, in sldns_fget_keyword_data() argument
230 return sldns_fget_keyword_data_l(f, keyword, k_del, data, d_del, in sldns_fget_keyword_data()
235 sldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del, char *data, in sldns_fget_keyword_data_l() argument
242 if(strlen(keyword) >= LDNS_MAX_KEYWORDLEN) in sldns_fget_keyword_data_l()
255 if (strncmp(fkeyword, keyword, LDNS_MAX_KEYWORDLEN - 1) == 0) { in sldns_fget_keyword_data_l()
492 sldns_bget_keyword_data(sldns_buffer *b, const char *keyword, const char *k_del, char in sldns_bget_keyword_data() argument
499 if(strlen(keyword) >= LDNS_MAX_KEYWORDLEN) in sldns_bget_keyword_data()
512 if (strncmp(fkeyword, keyword, strlen(keyword)) == 0) { in sldns_bget_keyword_data()
HDparse.h112 ssize_t sldns_fget_keyword_data(FILE *f, const char *keyword, const char *k_del, char *data, const …
127 ssize_t sldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del, char *data, cons…
140 ssize_t sldns_bget_keyword_data(struct sldns_buffer *b, const char *keyword, const char *k_del, cha…
/freebsd-13-stable/tests/sys/cddl/zfs/tests/hotspare/
HDhotspare_shared_001_pos.ksh87 for keyword in "${keywords[@]}" ; do
88 setup_hotspares "$keyword" $sdev
89 log_must create_pool $TESTPOOL1 $keyword $pool1devs
HDhotspare_export_001_neg.ksh119 for keyword in "${my_keywords[@]}" ; do
120 setup_hotspares $keyword $share_spare
121 verify_assertion $keyword $share_spare
/freebsd-13-stable/sys/dev/sfxge/
HDsfxge.c334 value.evv_keyword = ioc->u.vpd.keyword; in sfxge_vpd_ioctl()
348 value.evv_keyword = ioc->u.vpd.keyword; in sfxge_vpd_ioctl()
956 efx_vpd_tag_t tag, const char *keyword) in sfxge_vpd_try_add() argument
963 value.evv_keyword = EFX_VPD_KEYWORD(keyword[0], keyword[1]); in sfxge_vpd_try_add()
967 SYSCTL_ADD_PROC(ctx, list, OID_AUTO, keyword, in sfxge_vpd_try_add()
969 sc, tag << 16 | EFX_VPD_KEYWORD(keyword[0], keyword[1]), in sfxge_vpd_try_add()
979 char keyword[3]; in sfxge_vpd_init() local
1013 keyword[0] = 'V'; in sfxge_vpd_init()
1014 keyword[2] = 0; in sfxge_vpd_init()
1015 for (keyword[1] = '0'; keyword[1] <= '9'; keyword[1]++) in sfxge_vpd_init()
[all …]
/freebsd-13-stable/contrib/tcsh/
HDgethost.c58 static const char *keyword[] = variable
106 for (i = 0; keyword[i] != NULL; i++) in findtoken()
107 if (strcmp(keyword[i], ptr) == 0) in findtoken()
358 explode(defs), keyword[token]); in main()
361 keyword[token]); in main()
368 (void) fprintf(stdout, "# define _%s_\n", keyword[token]); in main()
369 (void) fprintf(stdout, " %s = %s;\n", keyword[token], stmt); in main()
/freebsd-13-stable/contrib/ldns/ldns/
HDparse.h123 ssize_t ldns_fget_keyword_data(FILE *f, const char *keyword, const char *k_del, char *data, const c…
138 ssize_t ldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del, char *data, const…
151 ssize_t ldns_bget_keyword_data(ldns_buffer *b, const char *keyword, const char *k_del, char *data, …
/freebsd-13-stable/tests/sys/cddl/zfs/tests/zfsd/
HDzfsd_hotspare_001_pos.ksh144 for keyword in "${my_keywords[@]}"; do
145 setup_hotspares "$keyword"
146 verify_assertion "$keyword"
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
HDTokenKinds.def267 // KEYALL - This is a keyword in all variants of C and C++, or it
268 // is a keyword in the implementation namespace that should
269 // always be treated as a keyword
270 // KEYC99 - This is a keyword introduced to C in C99
271 // KEYC11 - This is a keyword introduced to C in C11
272 // KEYC23 - This is a keyword introduced to C in C23
273 // KEYCXX - This is a C++ keyword, or a C++-specific keyword in the
275 // KEYNOCXX - This is a keyword in every non-C++ dialect.
276 // KEYCXX11 - This is a C++ keyword introduced to C++ in C++11
277 // KEYCXX20 - This is a C++ keyword introduced to C++ in C++20
[all …]
/freebsd-13-stable/usr.sbin/bsdconfig/dot/
HDINDEX39 # Two-part variable that defines an action to take when `keyword' is passed on
40 # a bsdconfig command line. Variable takes the form "keyword|command" and
41 # multiple occurrences of the variable (with different `keyword's, or different
42 # `keyword's AND `command's) are allowed. If `command' begins with a '/' then
44 # else it is a path relative to the directory this INDEX file is in. `keyword'
/freebsd-13-stable/usr.sbin/bsdconfig/includes/
HDINDEX38 # Two-part variable that defines an action to take when `keyword' is passed on
39 # a bsdconfig command line. Variable takes the form "keyword|command" and
40 # multiple occurrences of the variable (with different `keyword's, or different
41 # `keyword's AND `command's) are allowed. If `command' begins with a '/' then
43 # else it is a path relative to the directory this INDEX file is in. `keyword'
/freebsd-13-stable/usr.sbin/bsdconfig/packages/
HDINDEX38 # Two-part variable that defines an action to take when `keyword' is passed on
39 # a bsdconfig command line. Variable takes the form "keyword|command" and
40 # multiple occurrences of the variable (with different `keyword's, or different
41 # `keyword's AND `command's) are allowed. If `command' begins with a '/' then
43 # else it is a path relative to the directory this INDEX file is in. `keyword'
/freebsd-13-stable/usr.sbin/bsdconfig/startup/
HDINDEX39 # Two-part variable that defines an action to take when `keyword' is passed on
40 # a bsdconfig command line. Variable takes the form "keyword|command" and
41 # multiple occurrences of the variable (with different `keyword's, or different
42 # `keyword's AND `command's) are allowed. If `command' begins with a '/' then
44 # else it is a path relative to the directory this INDEX file is in. `keyword'
/freebsd-13-stable/usr.sbin/bsdconfig/mouse/
HDINDEX39 # Two-part variable that defines an action to take when `keyword' is passed on
40 # a bsdconfig command line. Variable takes the form "keyword|command" and
41 # multiple occurrences of the variable (with different `keyword's, or different
42 # `keyword's AND `command's) are allowed. If `command' begins with a '/' then
44 # else it is a path relative to the directory this INDEX file is in. `keyword'

12345678910>>...13