Home
last modified time | relevance | path

Searched refs:mtmp (Results 1 – 10 of 10) sorted by relevance

/freebsd/lib/libpam/modules/pam_nologin/
H A Dpam_nologin.c68 char *mtmp; in pam_sm_acct_mgmt() local
107 mtmp = malloc(st.st_size + 1); in pam_sm_acct_mgmt()
108 if (mtmp != NULL) { in pam_sm_acct_mgmt()
109 ss = read(fd, mtmp, st.st_size); in pam_sm_acct_mgmt()
111 mtmp[ss] = '\0'; in pam_sm_acct_mgmt()
112 pam_error(pamh, "%s", mtmp); in pam_sm_acct_mgmt()
114 free(mtmp); in pam_sm_acct_mgmt()
/freebsd/crypto/openssl/crypto/dh/
H A Ddh_lib.c38 const DH_METHOD *mtmp; in DH_set_method() local
39 mtmp = dh->meth; in DH_set_method()
40 if (mtmp->finish) in DH_set_method()
41 mtmp->finish(dh); in DH_set_method()
/freebsd/crypto/openssl/crypto/dsa/
H A Ddsa_lib.c112 const DSA_METHOD *mtmp; in DSA_set_method() local
113 mtmp = dsa->meth; in DSA_set_method()
114 if (mtmp->finish) in DSA_set_method()
115 mtmp->finish(dsa); in DSA_set_method()
/freebsd/crypto/openssl/crypto/cms/
H A Dcms_lib.c446 EVP_MD_CTX *mtmp; in ossl_cms_DigestAlgorithm_find_ctx() local
452 BIO_get_md_ctx(chain, &mtmp); in ossl_cms_DigestAlgorithm_find_ctx()
453 if (EVP_MD_CTX_get_type(mtmp) == nid in ossl_cms_DigestAlgorithm_find_ctx()
458 || EVP_MD_get_pkey_type(EVP_MD_CTX_get0_md(mtmp)) == nid) in ossl_cms_DigestAlgorithm_find_ctx()
459 return EVP_MD_CTX_copy_ex(mctx, mtmp); in ossl_cms_DigestAlgorithm_find_ctx()
/freebsd/sys/dev/mge/
H A Dif_mge.c1743 struct mbuf *m0, *mtmp; in mge_start_locked() local
1763 mtmp = m_dup(m0, M_NOWAIT); in mge_start_locked()
1765 if (mtmp == NULL) in mge_start_locked()
1767 m0 = mtmp; in mge_start_locked()
1772 mtmp = m_defrag(m0, M_NOWAIT); in mge_start_locked()
1773 if (mtmp != NULL) in mge_start_locked()
1774 m0 = mtmp; in mge_start_locked()
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_lib.c50 const RSA_METHOD *mtmp; in RSA_set_method() local
51 mtmp = rsa->meth; in RSA_set_method()
52 if (mtmp->finish) in RSA_set_method()
53 mtmp->finish(rsa); in RSA_set_method()
/freebsd/sys/dev/vnic/
H A Dnicvf_main.c636 struct mbuf *mtmp; in nicvf_if_transmit() local
657 mtmp = m_dup(mbuf, M_NOWAIT); in nicvf_if_transmit()
659 if (mtmp == NULL) in nicvf_if_transmit()
661 mbuf = mtmp; in nicvf_if_transmit()
/freebsd/stand/common/
H A Dmodule.c1741 struct moduledir *mdp, *mtmp; in moduledir_rebuild() local
1792 mtmp = mdp; in moduledir_rebuild()
1794 STAILQ_REMOVE(&moduledir_list, mtmp, moduledir, d_link); in moduledir_rebuild()
1795 free(mtmp); in moduledir_rebuild()
/freebsd/sys/dev/neta/
H A Dif_mvneta.c2671 struct mbuf *mtmp, *mbuf; in mvneta_tx_queue() local
2700 mtmp = m_dup(mbuf, M_NOWAIT); in mvneta_tx_queue()
2702 if (mtmp == NULL) { in mvneta_tx_queue()
2707 *mbufp = mbuf = mtmp; in mvneta_tx_queue()
/freebsd/contrib/libucl/src/
H A Ducl_util.c606 struct ucl_macro *macro, *mtmp; local
627 HASH_ITER (hh, parser->macroes, macro, mtmp) {