Lines Matching refs:funcp

770 	int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_attr_t *,
776 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_allochdl;
777 return ((*funcp)(dip, rdip, attr, waitfp, arg, handlep));
783 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
788 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_freehdl;
789 return ((*funcp)(dip, rdip, handlep));
797 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
803 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_bindhdl;
804 return ((*funcp)(dip, rdip, handle, dmareq, cp, ccountp));
811 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
816 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_unbindhdl;
817 return ((*funcp)(dip, rdip, handle));
826 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
832 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_flush;
833 return ((*funcp)(dip, rdip, handle, off, len, cache_flags));
841 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
847 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_win;
848 return ((*funcp)(dip, rdip, handle, win, offp, lenp,
857 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t, off_t,
872 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_flush;
873 return ((*funcp)(dip, rdip, h, o, l, whom));
881 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
886 funcp = DEVI(rdip)->devi_bus_dma_unbindfunc;
887 return ((*funcp)(dip, rdip, h));
4923 callback_insert(int (*funcp)(caddr_t), caddr_t arg, uintptr_t *listid,
4931 if (list->c_call == funcp && list->c_arg == arg) {
4957 new->c_call = funcp;
4967 ddi_set_callback(int (*funcp)(caddr_t), caddr_t arg, uintptr_t *listid)
4973 (void) callback_insert(funcp, arg, listid, 1);
4980 int (*funcp)(caddr_t);
5006 funcp = list->c_call;
5022 if ((rval = (*funcp)(arg)) == 0) {
5025 (void) callback_insert(funcp, arg, listid,
6948 int (*funcp)() = ddi_dma_allochdl;
6959 funcp = bop->bus_dma_allochdl;
6961 return ((*funcp)(dip, dip, &dma_attr, waitfp, arg, handlep));
7075 int (*funcp)();
7119 funcp = DEVI(rdip)->devi_bus_dma_bindfunc;
7120 return ((*funcp)(dip, rdip, handle, &dmareq, cookiep, ccountp));
7131 int (*funcp)();
7148 funcp = DEVI(rdip)->devi_bus_dma_bindfunc;
7149 return ((*funcp)(dip, rdip, handle, &dmareq, cookiep, ccountp));
7184 int (*funcp)() = ddi_dma_win;
7189 funcp = bop->bus_dma_win;
7191 return ((*funcp)(HD, HD, h, win, offp, lenp, cookiep, ccountp));