| /freebsd/crypto/openssh/regress/ |
| H A D | hostkey-rotate.sh | 36 primary="ssh-ed25519" 37 secondary="$primary" 84 dossh -oHostKeyAlgorithms=$primary -oStrictHostKeyChecking=no 87 check_key_present $primary || fail "unstrict didn't learn key" 111 if [ "$primary" != "$secondary" ]; then 127 ${SSHKEYGEN} -qt ${primary} -f $OBJ/hkr.${primary}-new -N '' || fatal "ssh-keygen ed25519" 128 ( cat $OBJ/sshd_proxy.orig ; echo HostKey $OBJ/hkr.${primary}-new ) \ 131 dossh -oStrictHostKeyChecking=yes -oHostKeyAlgorithms=${primary},$all_algs 133 check_key_present ${primary} || fail "current key missing" 134 check_key_present ${primary} $OBJ/hkr.${primary}-new.pub || fail "new key missing" [all …]
|
| /freebsd/crypto/openssl/test/ |
| H A D | drbgtest.c | 133 EVP_RAND_CTX *primary = RAND_get0_primary(NULL); in using_fips_rng() local 137 if (!TEST_ptr(primary)) in using_fips_rng() 140 prov = EVP_RAND_get0_provider(EVP_RAND_CTX_get0_rand(primary)); in using_fips_rng() 174 EVP_RAND_CTX *primary, in test_drbg_reseed() argument 200 if (!TEST_int_ne(primary_reseed = reseed_counter(primary), 0) in test_drbg_reseed() 228 if (!TEST_int_eq(state(primary), expected_state) in test_drbg_reseed() 235 if (!TEST_int_ge(reseed_counter(primary), primary_reseed)) in test_drbg_reseed() 243 reseed_counter(primary))) in test_drbg_reseed() 251 reseed_counter(primary))) in test_drbg_reseed() 257 if (!TEST_time_t_le(before_reseed, reseed_time(primary)) in test_drbg_reseed() [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/ccache/ |
| H A D | cc_dir.c | 543 char *primary; member 552 make_cursor(char *dirname, char *primary, DIR *dir, in make_cursor() argument 570 data->primary = primary; in make_cursor() 583 char *dirname = NULL, *primary_path = NULL, *primary = NULL; in dcc_ptcursor_new() local 590 ret = get_context_subsidiary_file(context, &primary); in dcc_ptcursor_new() 593 if (primary != NULL) { in dcc_ptcursor_new() 594 ret = make_cursor(NULL, primary, NULL, cursor_out); in dcc_ptcursor_new() 596 free(primary); in dcc_ptcursor_new() 612 ret = read_primary_file(context, primary_path, dirname, &primary); in dcc_ptcursor_new() 616 ret = make_cursor(dirname, primary, dir, cursor_out); in dcc_ptcursor_new() [all …]
|
| H A D | cc_api_macos.c | 62 char *primary; member 231 char *primary = NULL; in api_macos_resolve() local 234 ret = get_primary_name(context, &primary); in api_macos_resolve() 237 residual = primary; in api_macos_resolve() 240 free(primary); in api_macos_resolve() 521 apt->primary = NULL; in api_macos_ptcursor_new() 602 ret = get_primary_name(context, &apt->primary); in api_macos_ptcursor_next() 605 ret = make_open_cache(apt->primary, cache_out); in api_macos_ptcursor_next() 622 if (strcmp(residual->data, apt->primary) != 0) in api_macos_ptcursor_next() 647 free(apt->primary); in api_macos_ptcursor_free()
|
| /freebsd/crypto/openssh/ |
| H A D | auth-options.c | 534 sshauthopt_merge(const struct sshauthopt *primary, in sshauthopt_merge() argument 551 tmp = primary->required_from_host_cert; in sshauthopt_merge() 556 tmp = primary->required_from_host_keys; in sshauthopt_merge() 566 ret->force_tun_device = primary->force_tun_device; in sshauthopt_merge() 569 if (primary->nenv > 0) { in sshauthopt_merge() 571 primary->env, primary->nenv) != 0) in sshauthopt_merge() 578 if (primary->npermitopen > 0) { in sshauthopt_merge() 580 primary->permitopen, primary->npermitopen) != 0) in sshauthopt_merge() 588 if (primary->npermitlisten > 0) { in sshauthopt_merge() 590 primary->permitlisten, primary->npermitlisten) != 0) in sshauthopt_merge() [all …]
|
| /freebsd/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | coex.c | 213 struct ieee80211_chanctx_conf *primary; member 253 swap(data->primary, data->secondary); in iwl_mvm_bt_coex_tcm_based_ci() 333 data->secondary = data->primary; in iwl_mvm_bt_notif_per_link() 334 data->primary = chanctx_conf; in iwl_mvm_bt_notif_per_link() 341 if (chanctx_conf == data->primary) in iwl_mvm_bt_notif_per_link() 349 data->secondary = data->primary; in iwl_mvm_bt_notif_per_link() 350 data->primary = chanctx_conf; in iwl_mvm_bt_notif_per_link() 357 if (data->primary == chanctx_conf) in iwl_mvm_bt_notif_per_link() 368 if (!data->primary || data->primary == chanctx_conf) in iwl_mvm_bt_notif_per_link() 369 data->primary = chanctx_conf; in iwl_mvm_bt_notif_per_link() [all …]
|
| /freebsd/crypto/openssl/crypto/rand/ |
| H A D | rand_lib.c | 56 EVP_RAND_CTX *primary; member 576 EVP_RAND_CTX_free(dgbl->primary); in ossl_rand_ctx_free() 764 EVP_RAND_CTX *ret, *seed, *newseed = NULL, *primary; in rand_get0_primary() local 772 ret = dgbl->primary; in rand_get0_primary() 814 primary = dgbl->primary; in rand_get0_primary() 815 if (primary != NULL) { in rand_get0_primary() 819 return primary; in rand_get0_primary() 823 dgbl->primary = ret; in rand_get0_primary() 843 EVP_RAND_CTX *rand, *primary; in rand_get0_public() local 850 primary = rand_get0_primary(ctx, dgbl); in rand_get0_public() [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/os/ |
| H A D | locate_kdc.c | 161 entry->primary = -1; in new_server_entry() 189 int primary) in add_host_to_list() argument 207 entry->primary = primary; in add_host_to_list() 595 int primary = FALSE; in parse_uri_fields() local 616 primary = TRUE; in parse_uri_fields() 643 *primary_out = primary; in parse_uri_fields() 661 int port, def_port, primary; in locate_uri() local 675 parse_uri_fields(entry->host, &transport, &host_field, &primary); in locate_uri() 703 path, primary); in locate_uri() 939 ent->server.primary = 1; in mark_entry() [all …]
|
| H A D | t_locate_kdc.c | 63 entry->port, entry->primary, in print_addrs() 87 int primary = 0; in main() local 106 primary = 1; in main() 134 err = k5_locate_kdc(ctx, &realm, &sl, primary, FALSE); in main()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/ |
| H A D | suspend_on_probe_errors.ksh | 78 parted "/dev/${sd}" --script mkpart primary 0% 25% 79 parted "/dev/${sd}" --script mkpart primary 25% 50% 80 parted "/dev/${sd}" --script mkpart primary 50% 75% 81 parted "/dev/${sd}" --script mkpart primary 75% 100%
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | lilly.out | 27 ../a.out: illegal primary in regular expression += at = 33 ../a.out: illegal primary in regular expression *= at = 90 ../a.out: illegal primary in regular expression += at = 96 ../a.out: illegal primary in regular expression *= at = 252 ../a.out: illegal primary in regular expression += at = 258 ../a.out: illegal primary in regular expression *= at = 315 ../a.out: illegal primary in regular expression += at = 321 ../a.out: illegal primary in regular expression *= at = 492 ../a.out: illegal primary in regular expression += at = 498 ../a.out: illegal primary in regular expression *= at = [all …]
|
| /freebsd/sys/dev/drm2/ |
| H A D | drm_platform.c | 142 ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY); in drm_get_platform_dev() 155 &dev->primary->mode_group); in drm_get_platform_dev() 168 driver->date, dev->primary->index); in drm_get_platform_dev() 173 drm_put_minor(&dev->primary); in drm_get_platform_dev()
|
| /freebsd/sys/contrib/device-tree/Bindings/media/ |
| H A D | renesas,drif.txt | 28 two, one of them needs to act as a primary device that accepts common 30 property called "renesas,primary-bond". 34 the zeroth channel is selected as primary-bond. This channels accepts 37 "renesas,bonding" or "renesas,primary-bond" will have no effect. That 64 - If it acts as primary among enabled bonds 68 - renesas,primary-bond: empty property indicating the channel acts as primary 108 renesas,primary-bond;
|
| /freebsd/sys/compat/linuxkpi/common/src/ |
| H A D | linux_aperture.c | 355 bool primary = false; in aperture_remove_conflicting_pci_devices() local 361 primary = true; in aperture_remove_conflicting_pci_devices() 363 if (primary) in aperture_remove_conflicting_pci_devices() 381 if (primary) in aperture_remove_conflicting_pci_devices()
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_RAND.pod | 78 the <primary>, <public>, and <private> DRBG. 79 While the <primary> DRBG is a single global instance, the <public> and <private> 85 =head2 The <primary> DRBG instance 87 The <primary> DRBG is not used directly by the application, only for reseeding 103 The <primary> DRBG is intended to be accessed concurrently for reseeding 105 It is I<not> thread-safe to access the <primary> DRBG directly via the 121 thread. Using the <primary> DRBG as entropy source for multiple DRBG 123 will lock the <primary> DRBG automatically for obtaining random input. 135 RAND_add() ==> <primary> <-| shared DRBG (with locking) | 207 (or L<RAND_seed(3)>), then this will immediately reseed the <primary> DRBG. [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
| H A D | pamu.txt | 57 - fsl,primary-cache-geometry 59 Two cells that specify the geometry of the primary PAMU 107 fsl,primary-cache-geometry = <32 1>; 113 fsl,primary-cache-geometry = <32 1>; 119 fsl,primary-cache-geometry = <32 1>; 125 fsl,primary-cache-geometry = <32 1>; 131 fsl,primary-cache-geometry = <32 1>;
|
| /freebsd/bin/sh/ |
| H A D | arith_yacc.c | 168 static arith_t primary(int token, union yystype *val, int op, int noeval) in primary() function 193 return -primary(op, val, yylex(), noeval); in primary() 196 return !primary(op, val, yylex(), noeval); in primary() 199 return ~primary(op, val, yylex(), noeval); in primary() 216 b = primary(token, &val, yylex(), noeval); in binop2() 237 arith_t a = primary(token, val, op, noeval); in binop()
|
| /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | snps,dw-apb-ictl.txt | 5 APB bus, e.g. Marvell Armada 1500. It can also be used as primary interrupt 16 - interrupts: interrupt reference to primary interrupt controller 37 /* dw_apb_ictl is used as primary interrupt controller */
|
| H A D | marvell,armada-8k-pic.txt | 6 typically connected to the GIC as the primary interrupt controller. 14 - interrupts: the interrupt to the primary interrupt controller,
|
| /freebsd/contrib/ntp/scripts/ntptrace/ |
| H A D | ntptrace-opts.def | 47 the chain of NTP servers from a given host back to the primary time source. For 65 count to the primary source, while the synchronization distance is the 66 estimated error relative to the primary source. These terms are precisely
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | SearchableTable.td | 21 // Both a primary key and additional secondary keys / search indices can also 53 // table can have a searchable primary key, and it can also be referenced by 56 // The name of the record is used as the name of the global primary array of 109 // (Optional) List of fields that make up the primary key. 112 // (Optional) Name of the primary key search function.
|
| /freebsd/sys/contrib/device-tree/Bindings/remoteproc/ |
| H A D | st-rproc.txt | 6 Co-processors can be controlled from the bootloader or the primary OS. If 7 the bootloader starts a co-processor, the primary OS must detect its state
|
| /freebsd/contrib/mandoc/ |
| H A D | read.c | 57 struct buf *primary; /* buffer currently being parsed */ member 110 cp = curp->primary->buf; in choose_parser() 111 ep = cp + curp->primary->sz; in choose_parser() 587 save_primary = curp->primary; in mparse_readfd() 592 curp->primary = &blk; in mparse_readfd() 621 curp->primary = save_primary; in mparse_readfd()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | RAND_get0_primary.pod | 29 The I<primary> DRBG is a global instance, which is not intended to be used 39 RAND_get0_primary() returns a pointer to the I<primary> DRBG instance 53 It is not thread-safe to access the I<primary> DRBG instance.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
| H A D | AArch64CPUFeatures.inc | 13 // This file has two identical copies. The primary copy lives in LLVM and 15 // changes in this file, first modify the primary copy and copy it over to
|