Lines Matching defs:funcp

771 	int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_attr_t *,
777 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_allochdl;
778 return ((*funcp)(dip, rdip, attr, waitfp, arg, handlep));
784 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
789 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_freehdl;
790 return ((*funcp)(dip, rdip, handlep));
798 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
804 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_bindhdl;
805 return ((*funcp)(dip, rdip, handle, dmareq, cp, ccountp));
812 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
817 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_unbindhdl;
818 return ((*funcp)(dip, rdip, handle));
827 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
833 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_flush;
834 return ((*funcp)(dip, rdip, handle, off, len, cache_flags));
842 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t,
848 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_win;
849 return ((*funcp)(dip, rdip, handle, win, offp, lenp,
858 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t, off_t,
873 funcp = DEVI(dip)->devi_ops->devo_bus_ops->bus_dma_flush;
874 return ((*funcp)(dip, rdip, h, o, l, whom));
882 int (*funcp)(dev_info_t *, dev_info_t *, ddi_dma_handle_t);
887 funcp = DEVI(rdip)->devi_bus_dma_unbindfunc;
888 return ((*funcp)(dip, rdip, h));
4924 callback_insert(int (*funcp)(caddr_t), caddr_t arg, uintptr_t *listid,
4932 if (list->c_call == funcp && list->c_arg == arg) {
4958 new->c_call = funcp;
4968 ddi_set_callback(int (*funcp)(caddr_t), caddr_t arg, uintptr_t *listid)
4974 (void) callback_insert(funcp, arg, listid, 1);
4981 int (*funcp)(caddr_t);
5007 funcp = list->c_call;
5023 if ((rval = (*funcp)(arg)) == 0) {
5026 (void) callback_insert(funcp, arg, listid,
6949 int (*funcp)() = ddi_dma_allochdl;
6960 funcp = bop->bus_dma_allochdl;
6962 return ((*funcp)(dip, dip, &dma_attr, waitfp, arg, handlep));
7076 int (*funcp)();
7120 funcp = DEVI(rdip)->devi_bus_dma_bindfunc;
7121 return ((*funcp)(dip, rdip, handle, &dmareq, cookiep, ccountp));
7132 int (*funcp)();
7149 funcp = DEVI(rdip)->devi_bus_dma_bindfunc;
7150 return ((*funcp)(dip, rdip, handle, &dmareq, cookiep, ccountp));
7185 int (*funcp)() = ddi_dma_win;
7190 funcp = bop->bus_dma_win;
7192 return ((*funcp)(HD, HD, h, win, offp, lenp, cookiep, ccountp));