Home
last modified time | relevance | path

Searched refs:ecmd (Results 1 – 4 of 4) sorted by relevance

/src/crypto/openssl/crypto/engine/
H A Deng_cnf.c49 CONF_VALUE *ecmd = NULL; in int_engine_configure() local
65 ecmd = sk_CONF_VALUE_value(ecmds, i); in int_engine_configure()
66 ctrlname = skip_dot(ecmd->name); in int_engine_configure()
67 ctrlvalue = ecmd->value; in int_engine_configure()
129 ecmd = NULL; in int_engine_configure()
135 if (ecmd == NULL) in int_engine_configure()
140 ecmd->section, ecmd->name, ecmd->value); in int_engine_configure()
/src/crypto/openssl/crypto/
H A Dprovider_conf.c335 CONF_VALUE *ecmd = sk_CONF_VALUE_value(ecmds, i); in provider_conf_load() local
336 const char *confname = skip_dot(ecmd->name); in provider_conf_load()
337 const char *confvalue = ecmd->value; in provider_conf_load()
/src/sys/dev/isp/
H A Disp_pci.c903 isp_ecmd_t *ecmd; in isp_pci_mbxdma() local
978 for (ecmd = isp->isp_osinfo.ecmd_free; in isp_pci_mbxdma()
979 ecmd < &isp->isp_osinfo.ecmd_free[N_XCMDS]; ecmd++) { in isp_pci_mbxdma()
980 if (ecmd == &isp->isp_osinfo.ecmd_free[N_XCMDS - 1]) in isp_pci_mbxdma()
981 ecmd->next = NULL; in isp_pci_mbxdma()
983 ecmd->next = ecmd + 1; in isp_pci_mbxdma()
H A Disp_freebsd.c3493 isp_ecmd_t *ecmd = isp->isp_osinfo.ecmd_free; in isp_get_ecmd() local
3494 if (ecmd) { in isp_get_ecmd()
3495 isp->isp_osinfo.ecmd_free = ecmd->next; in isp_get_ecmd()
3497 return (ecmd); in isp_get_ecmd()
3501 isp_put_ecmd(ispsoftc_t *isp, isp_ecmd_t *ecmd) in isp_put_ecmd() argument
3503 ecmd->next = isp->isp_osinfo.ecmd_free; in isp_put_ecmd()
3504 isp->isp_osinfo.ecmd_free = ecmd; in isp_put_ecmd()