| /src/sys/arch/sparc64/dev/ |
| schizovar.h | 79 #define schizo_pbm_read(pbm,r) \ 80 bus_space_read_8((pbm)->sp_regt, (pbm)->sp_regh, (r)) 81 #define schizo_pbm_write(pbm,r,v) \ 82 bus_space_write_8((pbm)->sp_regt, (pbm)->sp_regh, (r), (v)) 83 #define schizo_pbm_readintr(pbm,r) \ 84 bus_space_read_8((pbm)->sp_regt, (pbm)->sp_intrh, (r)) 85 #define schizo_pbm_writeintr(pbm,r,v) [all...] |
| vpci.c | 200 struct vpci_pbm *pbm; local 204 pbm = kmem_zalloc(sizeof(*pbm), KM_SLEEP); 205 pbm->vp_sc = sc; 206 pbm->vp_devhandle = (ma->ma_reg[0].ur_paddr >> 32) & 0x0fffffff; 209 pbm->vp_bus_a = busa; 213 &pbm->vp_nrange, (void **)&pbm->vp_range)) 215 for (int range = 0; range < pbm->vp_nrange; range++) 220 pbm->vp_range[range].cspace 335 struct vpci_pbm *pbm = pc->cookie; local 355 struct vpci_pbm *pbm = pc->cookie; local 374 struct vpci_pbm *pbm = pa->pa_pc->cookie; local 487 struct vpci_pbm *pbm = t->_cookie; local 501 struct vpci_pbm *pbm = t->cookie; local 539 struct vpci_pbm *pbm = t->cookie; local 640 struct vpci_pbm *pbm = (struct vpci_pbm *)pc->cookie; local [all...] |
| schizo.c | 147 struct schizo_pbm *pbm; local 183 pbm = kmem_zalloc(sizeof(*pbm), KM_SLEEP); 185 sc->sc_pbm = pbm; 187 pbm->sp_sc = sc; 188 pbm->sp_regt = sc->sc_bustag; 191 pbm->sp_bus_a = 1; 193 pbm->sp_bus_a = 0; 200 BUS_SPACE_MAP_LINEAR, &pbm->sp_intrh)) { 202 kmem_free(pbm, sizeof(*pbm)) 692 struct schizo_pbm *pbm = t->_cookie; local 720 struct schizo_pbm *pbm = t->cookie; local 759 struct schizo_pbm *pbm = t->cookie; local 795 struct schizo_pbm *pbm = pa->pa_pc->cookie; local 808 struct schizo_pbm *pbm = t->cookie; local 899 struct schizo_pbm *pbm = (struct schizo_pbm *)pc->cookie; local 914 struct schizo_pbm *pbm; local [all...] |
| pyro.c | 185 struct pyro_pbm *pbm; local 189 pbm = kmem_zalloc(sizeof(*pbm), KM_SLEEP); 190 pbm->pp_sc = sc; 191 pbm->pp_bus_a = busa; 194 &pbm->pp_nrange, (void **)&pbm->pp_range)) 207 pyro_init_iommu(sc, pbm); 209 pbm->pp_memt = pyro_alloc_mem_tag(pbm); 461 struct pyro_pbm *pbm = t->_cookie; local 475 struct pyro_pbm *pbm = t->cookie; local 519 struct pyro_pbm *pbm = t->cookie; local 557 struct pyro_pbm *pbm = t->cookie; local 640 struct pyro_pbm *pbm = (struct pyro_pbm *)pc->cookie; local [all...] |
| /src/usr.bin/make/ |
| meta.c | 118 meta_open_filemon(BuildMon *pbm) 122 pbm->mon_fd = -1; 123 pbm->filemon = NULL; 124 if (!useFilemon || pbm->mfp == NULL) 127 pbm->filemon = filemon_open(); 128 if (pbm->filemon == NULL) { 141 pbm->mon_fd = Job_TempFile("filemon.XXXXXX", NULL, 0); 143 pbm->mon_fd = mkTempFile("filemon.XXXXXX", NULL, 0); 144 if ((dupfd = dup(pbm->mon_fd)) == -1) { 148 if (filemon_setfd(pbm->filemon, dupfd) == -1) 609 BuildMon *pbm; local 636 BuildMon *pbm; local 657 BuildMon *pbm; local 670 BuildMon *pbm; local 684 BuildMon *pbm; local 698 BuildMon *pbm; local 722 BuildMon *pbm; local 751 BuildMon *pbm = pbmp; local 783 BuildMon *pbm; local 1747 BuildMon *pbm = &Mybm; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/crmf/ |
| crmf_pbm.c | 43 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 46 if ((pbm = OSSL_CRMF_PBMPARAMETER_new()) == NULL) 60 if (!ASN1_OCTET_STRING_set(pbm->salt, salt, (int)slen)) 68 if (!X509_ALGOR_set0(pbm->owf, OBJ_nid2obj(owfnid), V_ASN1_UNDEF, NULL)) { 92 if (!ASN1_INTEGER_set(pbm->iterationCount, itercnt)) { 102 if (!X509_ALGOR_set0(pbm->mac, OBJ_nid2obj(macnid), V_ASN1_UNDEF, NULL)) { 108 return pbm; 111 OSSL_CRMF_PBMPARAMETER_free(pbm); 116 * calculates the PBM based on the settings of the given OSSL_CRMF_PBMPARAMETER 118 * |msg| message to apply the PBM fo [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/crmf/ |
| crmf_pbm.c | 45 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 48 if ((pbm = OSSL_CRMF_PBMPARAMETER_new()) == NULL) 62 if (!ASN1_OCTET_STRING_set(pbm->salt, salt, (int)slen)) 70 if (!X509_ALGOR_set0(pbm->owf, OBJ_nid2obj(owfnid), V_ASN1_UNDEF, NULL)) { 94 if (!ASN1_INTEGER_set(pbm->iterationCount, itercnt)) { 104 if (!X509_ALGOR_set0(pbm->mac, OBJ_nid2obj(macnid), V_ASN1_UNDEF, NULL)) { 110 return pbm; 113 OSSL_CRMF_PBMPARAMETER_free(pbm); 118 * calculates the PBM based on the settings of the given OSSL_CRMF_PBMPARAMETER 120 * |msg| message to apply the PBM fo [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/cmp/ |
| cmp_protect.c | 61 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 83 pbm = d2i_OSSL_CRMF_PBMPARAMETER(NULL, &pbm_str_uc, pbm_str->length); 84 if (pbm == NULL) { 90 pbm, prot_part_der, prot_part_der_len, 104 OSSL_CRMF_PBMPARAMETER_free(pbm); 191 * the pbm settings in the context 195 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 204 pbm = OSSL_CRMF_pbmp_new(ctx->libctx, ctx->pbm_slen, 208 if (pbm == NULL || pbm_str == NULL) 210 if ((pbm_der_len = i2d_OSSL_CRMF_PBMPARAMETER(pbm, &pbm_der)) < 0 [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/cmp/ |
| cmp_protect.c | 58 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 80 pbm = d2i_OSSL_CRMF_PBMPARAMETER(NULL, &pbm_str_uc, pbm_str->length); 81 if (pbm == NULL) { 87 pbm, prot_part_der, prot_part_der_len, 102 OSSL_CRMF_PBMPARAMETER_free(pbm); 186 * the pbm settings in the context 190 OSSL_CRMF_PBMPARAMETER *pbm = NULL; local 198 pbm = OSSL_CRMF_pbmp_new(ctx->libctx, ctx->pbm_slen, 202 if (pbm == NULL || pbm_str == NULL) 205 if ((pbm_der_len = i2d_OSSL_CRMF_PBMPARAMETER(pbm, &pbm_der)) < 0 [all...] |
| /src/sys/arch/powerpc/tools/chrpicon/ppmtochrpicon/ |
| ppmtochrpicon.c | 52 #include <pbm.h>
|
| /src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/ |
| chrpicontoppm.c | 55 #include <pbm.h>
|
| /src/crypto/external/apache2/openssl/dist/apps/ |
| openssl-vms.cnf | 362 [pbm] # Password-based protection for Insta CA 372 secret = # disable PBM
|
| openssl.cnf | 362 [pbm] # Password-based protection for Insta CA 372 secret = # disable PBM
|
| /src/crypto/external/bsd/openssl/dist/apps/ |
| openssl-vms.cnf | 362 [pbm] # Password-based protection for Insta CA 372 secret = # disable PBM
|
| openssl.cnf | 362 [pbm] # Password-based protection for Insta CA 372 secret = # disable PBM
|
| /src/external/bsd/file/dist/magic/ |
| Makefile.am | 248 $(MAGIC_FRAGMENT_DIR)/pbm \
|