Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/icp/os/
H A Dmodhash.c651 mod_hash_reserve(mod_hash_t *hash, mod_hash_hndl_t *handlep) in mod_hash_reserve() argument
653 *handlep = kmem_cache_alloc(mh_e_cache, hash->mh_sleep); in mod_hash_reserve()
654 if (*handlep == NULL) { in mod_hash_reserve()
663 mod_hash_reserve_nosleep(mod_hash_t *hash, mod_hash_hndl_t *handlep) in mod_hash_reserve_nosleep() argument
665 *handlep = kmem_cache_alloc(mh_e_cache, KM_NOSLEEP); in mod_hash_reserve_nosleep()
666 if (*handlep == NULL) { in mod_hash_reserve_nosleep()
677 mod_hash_cancel(mod_hash_t *hash, mod_hash_hndl_t *handlep) in mod_hash_cancel() argument
679 kmem_cache_free(mh_e_cache, *handlep); in mod_hash_cancel()
680 *handlep = (mod_hash_hndl_t)0; in mod_hash_cancel()
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Def10_nic.c681 __out efx_piobuf_handle_t *handlep) in efx_mcdi_alloc_piobuf() argument
688 if (handlep == NULL) { in efx_mcdi_alloc_piobuf()
831 efx_piobuf_handle_t *handlep; in ef10_nic_alloc_piobufs() local
842 if (efx_mcdi_alloc_piobuf(enp, handlep) != 0) in ef10_nic_alloc_piobufs()
855 (void) efx_mcdi_free_piobuf(enp, *handlep); in ef10_nic_alloc_piobufs()
856 *handlep = EFX_PIOBUF_HANDLE_INVALID; in ef10_nic_alloc_piobufs()
866 efx_piobuf_handle_t *handlep; in ef10_nic_free_piobufs() local
872 (void) efx_mcdi_free_piobuf(enp, *handlep); in ef10_nic_free_piobufs()
873 *handlep = EFX_PIOBUF_HANDLE_INVALID; in ef10_nic_free_piobufs()
883 __out efx_piobuf_handle_t *handlep, in ef10_nic_pio_alloc() argument
[all …]
H A Defx_mcdi.c847 __out uint32_t *handlep) in efx_mcdi_get_proxy_handle() argument
858 if ((emrp == NULL) || (handlep == NULL)) { in efx_mcdi_get_proxy_handle()
864 *handlep = emrp->emr_proxy_handle; in efx_mcdi_get_proxy_handle()
867 *handlep = 0; in efx_mcdi_get_proxy_handle()
H A Defx_mcdi.h85 __out uint32_t *handlep);
H A Def10_impl.h1013 __out efx_piobuf_handle_t *handlep,
/f-stack/freebsd/kern/
H A Dsubr_csan.c695 int flags, bus_space_handle_t *handlep)
698 return (bus_space_map(tag, hnd, size, flags, handlep));
711 bus_size_t offset, bus_size_t size, bus_space_handle_t *handlep) in kcsan_bus_space_subregion() argument
714 return (bus_space_subregion(tag, hnd, offset, size, handlep)); in kcsan_bus_space_subregion()
722 bus_space_handle_t *handlep) in kcsan_bus_space_alloc() argument
726 boundary, flags, addrp, handlep)); in kcsan_bus_space_alloc()
/f-stack/freebsd/sys/
H A Dpmclog.h302 int pmclog_proc_create(struct thread *td, void **handlep);
/f-stack/freebsd/x86/xen/
H A Dxen_intr.c1603 xen_intr_get_evtchn_from_port(evtchn_port_t port, xen_intr_handle_t *handlep) in xen_intr_get_evtchn_from_port() argument
1609 if (handlep == NULL) { in xen_intr_get_evtchn_from_port()
1622 *handlep = &xen_intr_port_to_isrc[port]->xi_vector; in xen_intr_get_evtchn_from_port()