Home
last modified time | relevance | path

Searched refs:glist (Results 1 – 8 of 8) sorted by relevance

/freebsd/tools/tools/scsi-defects/
H A Dscsi-defects.pl57 if ($ARGV[1] =~ /^[Gg]/) { $glist = 1; $plist = 0; }
58 elsif ($ARGV[1] =~ /^[Pp]/) { $glist = 0; $plist = 1; }
61 $glist = 1; $plist = 0;
65 "-c '{ Op code} 37 0 0:3 v:1 v:1 5:3 0 0 0 0 4:i2 0' $plist $glist " .
81 "-c '{ Op code} 37 0 0:3 v:1 v:1 5:3 0 0 0 0 v:i2 0' $plist $glist " .
/freebsd/libexec/mknetid/
H A Dmknetid.c104 struct grouplist *glist; in main() local
226 if ((glist = lookup(mtable, (char *)&readbuf)) != NULL) { in main()
227 while(glist) { in main()
228 if (glist->groupid != i) in main()
229 printf(",%lu", (u_long)glist->groupid); in main()
230 glist = glist->next; in main()
/freebsd/sbin/ipf/ipscan/
H A Dipscan_y.y89 gline: YY_STR ':' glist '=' action
119 glist: YY_STR
120 | glist ',' YY_STR
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h1493 #define SSL_get1_groups(s, glist) \ argument
1494 SSL_ctrl(s, SSL_CTRL_GET_GROUPS, 0, (int *)(glist))
1497 #define SSL_CTX_set1_groups(ctx, glist, glistlen) \ argument
1498 SSL_CTX_ctrl(ctx, SSL_CTRL_SET_GROUPS, glistlen, (int *)(glist))
1504 #define SSL_set1_groups(s, glist, glistlen) \ argument
1505 SSL_ctrl(s, SSL_CTRL_SET_GROUPS, glistlen, (char *)(glist))
H A Dssl.h.in1446 #define SSL_get1_groups(s, glist) \ argument
1447 SSL_ctrl(s, SSL_CTRL_GET_GROUPS, 0, (int *)(glist))
1450 #define SSL_CTX_set1_groups(ctx, glist, glistlen) \ argument
1451 SSL_CTX_ctrl(ctx, SSL_CTRL_SET_GROUPS, glistlen, (int *)(glist))
1457 #define SSL_set1_groups(s, glist, glistlen) \ argument
1458 SSL_ctrl(s, SSL_CTRL_SET_GROUPS, glistlen, (char *)(glist))
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set1_curves.pod16 int SSL_CTX_set1_groups(SSL_CTX *ctx, int *glist, int glistlen);
19 int SSL_set1_groups(SSL *ssl, int *glist, int glistlen);
49 groups in the array B<glist>. The array consist of all B<NIDs> of supported groups.
/freebsd/crypto/openssl/ssl/
H A Dt1_lib.c1084 uint16_t *glist = NULL, *kslist = NULL; in tls1_set_groups() local
1099 if ((glist = OPENSSL_malloc(ngroups * sizeof(*glist))) == NULL) in tls1_set_groups()
1116 glist[i] = id; in tls1_set_groups()
1121 *grpext = glist; in tls1_set_groups()
1137 OPENSSL_free(glist); in tls1_set_groups()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa.c3643 uint64_t *glist; in spa_try_repair() local
3654 &glist, &gcount) != 0) in spa_try_repair()
3662 if (glist[i] == 0) /* vdev is hole */ in spa_try_repair()
3665 vd[i] = spa_lookup_by_guid(spa, glist[i], B_FALSE); in spa_try_repair()
9129 uint64_t txg, *glist; local
9198 glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
9224 &glist[c]) != 0) {
9230 vml[c] = spa_lookup_by_guid(spa, glist[c], B_FALSE);
9279 kmem_free(glist, children * sizeof (uint64_t));
9295 fnvlist_add_uint64_array(nvl, ZPOOL_CONFIG_SPLIT_LIST, glist, children);
[all …]