Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd/contrib/ldns/
H A Dlibdns.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 …]
H A Dparse.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/tools/tools/genericize/
H A Dgenericize.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/crypto/openssh/regress/unittests/authopt/
H A Dtests.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/tests/sys/cddl/zfs/tests/history/
H A Dhistory_common.kshlib209 typeset keyword=$4
213 log_note "Checking cmd($subcmd) for $ds, keyword='$keyword'"
215 $GREP $keyword >/dev/null 2>&1
234 typeset keyword=$4
242 keyword="$subcmd"
243 verify_history_line "$line" $subcmd $ds $keyword
249 verify_history_line "$line" "$_subcmd" $ds "$keyword"
255 verify_history_line "$line" "$_subcmd" $ds "$keyword"
/freebsd/crypto/openssl/test/
H A Devp_test.c376 const char *keyword, const char *value) in digest_test_parse() argument
380 if (strcmp(keyword, "Input") == 0) in digest_test_parse()
382 if (strcmp(keyword, "Output") == 0) in digest_test_parse()
384 if (strcmp(keyword, "Count") == 0) in digest_test_parse()
386 if (strcmp(keyword, "Ncopy") == 0) in digest_test_parse()
388 if (strcmp(keyword, "Padding") == 0) in digest_test_parse()
611 static int cipher_test_parse(EVP_TEST *t, const char *keyword, in cipher_test_parse() argument
617 if (strcmp(keyword, "Key") == 0) in cipher_test_parse()
619 if (strcmp(keyword, "Rounds") == 0) { in cipher_test_parse()
626 if (strcmp(keyword, "I in cipher_test_parse()
1237 mac_test_parse(EVP_TEST * t,const char * keyword,const char * value) mac_test_parse() argument
1793 pkey_test_parse(EVP_TEST * t,const char * keyword,const char * value) pkey_test_parse() argument
1929 pderive_test_parse(EVP_TEST * t,const char * keyword,const char * value) pderive_test_parse() argument
2100 scrypt_test_parse(EVP_TEST * t,const char * keyword,const char * value) scrypt_test_parse() argument
2117 pbkdf2_test_parse(EVP_TEST * t,const char * keyword,const char * value) pbkdf2_test_parse() argument
2137 pkcs12_test_parse(EVP_TEST * t,const char * keyword,const char * value) pkcs12_test_parse() argument
2187 pbe_test_parse(EVP_TEST * t,const char * keyword,const char * value) pbe_test_parse() argument
2332 encode_test_parse(EVP_TEST * t,const char * keyword,const char * value) encode_test_parse() argument
2523 rand_test_parse(EVP_TEST * t,const char * keyword,const char * value) rand_test_parse() argument
2805 kdf_test_parse(EVP_TEST * t,const char * keyword,const char * value) kdf_test_parse() argument
2905 pkey_kdf_test_parse(EVP_TEST * t,const char * keyword,const char * value) pkey_kdf_test_parse() argument
3034 void_test_parse(EVP_TEST * t,const char * keyword,const char * value) void_test_parse() argument
3143 keygen_test_parse(EVP_TEST * t,const char * keyword,const char * value) keygen_test_parse() argument
3267 digestsigver_test_parse(EVP_TEST * t,const char * keyword,const char * value) digestsigver_test_parse() argument
[all...]
/freebsd/tests/sys/cddl/zfs/tests/online_offline/
H A Donline_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/crypto/openssh/
H A Dservconf.c1320 char *str, ***chararrayptr, **charptr, *arg, *arg2, *p, *keyword; in process_server_config_line_depth() local
1349 if ((keyword = strdelim(&str)) == NULL) in process_server_config_line_depth()
1352 if (*keyword == '\0') in process_server_config_line_depth()
1353 keyword = strdelim(&str); in process_server_config_line_depth()
1354 if (!keyword || !*keyword || *keyword == '#') in process_server_config_line_depth()
1358 filename, linenum, keyword); in process_server_config_line_depth()
1363 opcode = parse_token(keyword, filename, linenum, &flags); in process_server_config_line_depth()
1377 debug3("%s:%d setting %s %s", filename, linenum, keyword, str); in process_server_config_line_depth()
1381 "within a Match block", filename, linenum, keyword); in process_server_config_line_depth()
1623 filename, linenum, keyword, arg); in process_server_config_line_depth()
[all …]
/freebsd/contrib/netbsd-tests/bin/ps/
H A Dkeywords5 # 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/usr.sbin/makefs/
H A Dmtree.c479 char keyword[PATH_MAX]; in read_mtree_keywords() local
495 error = read_word(fp, keyword, sizeof(keyword)); in read_mtree_keywords()
499 if (keyword[0] == '\0') in read_mtree_keywords()
502 value = strchr(keyword, '='); in read_mtree_keywords()
518 switch (keyword[0]) { in read_mtree_keywords()
520 if (strcmp(keyword, "contents") == 0) { in read_mtree_keywords()
530 if (strcmp(keyword, "flags") == 0) { in read_mtree_keywords()
547 if (strcmp(keyword, "gid") == 0) { in read_mtree_keywords()
556 } else if (strcmp(keyword, "gname") == 0) { in read_mtree_keywords()
569 if (strcmp(keyword, "link") == 0) { in read_mtree_keywords()
[all …]
/freebsd/stand/usb/tools/
H A Dsysinit.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/sys/dev/sfxge/common/
H A Defx_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/contrib/unbound/sldns/
H A Dparse.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()
H A Dparse.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/sys/dev/sfxge/
H A Dsfxge.c333 value.evv_keyword = ioc->u.vpd.keyword; in sfxge_vpd_ioctl()
347 value.evv_keyword = ioc->u.vpd.keyword; in sfxge_vpd_ioctl()
951 efx_vpd_tag_t tag, const char *keyword) in sfxge_vpd_try_add() argument
958 value.evv_keyword = EFX_VPD_KEYWORD(keyword[0], keyword[1]); in sfxge_vpd_try_add()
962 SYSCTL_ADD_PROC(ctx, list, OID_AUTO, keyword, in sfxge_vpd_try_add()
964 sc, tag << 16 | EFX_VPD_KEYWORD(keyword[0], keyword[1]), in sfxge_vpd_try_add()
974 char keyword[3]; in sfxge_vpd_init() local
1008 keyword[0] = 'V'; in sfxge_vpd_init()
1009 keyword[2] = 0; in sfxge_vpd_init()
1010 for (keyword[1] = '0'; keyword[1] <= '9'; keyword[1]++) in sfxge_vpd_init()
[all …]
/freebsd/contrib/tcsh/
H A Dgethost.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/tests/sys/cddl/zfs/tests/hotspare/
H A Dhotspare_shared_001_pos.ksh84 for keyword in "${keywords[@]}" ; do
85 setup_hotspares "$keyword" $sdev
86 log_must create_pool $TESTPOOL1 $keyword $pool1devs
H A Dhotspare_export_001_neg.ksh116 for keyword in "${my_keywords[@]}" ; do
117 setup_hotspares $keyword $share_spare
118 verify_assertion $keyword $share_spare
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.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/contrib/ldns/ldns/
H A Dparse.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/tests/sys/cddl/zfs/tests/zfsd/
H A Dzfsd_hotspare_001_pos.ksh144 for keyword in "${my_keywords[@]}"; do
145 setup_hotspares "$keyword"
146 verify_assertion "$keyword"
/freebsd/usr.sbin/bsdconfig/ttys/
H A DINDEX39 # 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/usr.sbin/bsdconfig/docsinstall/
H A DINDEX39 # 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/usr.sbin/bsdconfig/mouse/
H A DINDEX39 # 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/usr.sbin/bsdconfig/packages/
H A DINDEX38 # 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'

12345678910>>...14