Searched refs:ops (Results 176 - 200 of 417) sorted by relevance

1234567891011>>

/freebsd-current/sys/amd64/vmm/io/
H A Dvlapic.c289 if (vlapic->ops.set_intr_ready)
290 return ((*vlapic->ops.set_intr_ready)(vlapic, vector, level));
1238 if (vlapic->ops.pending_intr)
1239 return ((*vlapic->ops.pending_intr)(vlapic, vecptr));
1268 if (vlapic->ops.intr_accepted)
1269 return ((*vlapic->ops.intr_accepted)(vlapic, vector));
1672 if (vlapic->ops.enable_x2apic_mode)
1673 (*vlapic->ops.enable_x2apic_mode)(vlapic);
1723 if (vlapic->ops.post_intr)
1724 (*vlapic->ops
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/fw/
H A Ddbg.h208 fwrt->trans->cfg->d3_debug_data_length && fwrt->ops &&
209 fwrt->ops->d3_debug_enable &&
210 fwrt->ops->d3_debug_enable(fwrt->ops_ctx) &&
/freebsd-current/sys/vm/
H A Dvm_pager.h284 int vm_pager_alloc_dyn_type(struct pagerops *ops, int base_type);
299 const struct cdev_pager_ops *ops, vm_ooffset_t size, vm_prot_t prot,
317 vm_object_t phys_pager_allocate(void *handle, const struct phys_pager_ops *ops,
H A Dvm_pager.c399 vm_pager_alloc_dyn_type(struct pagerops *ops, int base_type) argument
417 if (ops->pgo_##n == NULL) \
418 ops->pgo_##n = pagertab[base_type]->pgo_##n
439 pagertab[res] = ops; /* XXXKIB should be rel, but acq is too much */
/freebsd-current/sys/arm/arm/
H A Dplatform.c138 * We can't free the KOBJ, since it is static. Reset the ops
141 platp->ops = NULL;
/freebsd-current/sys/dev/ixgbe/
H A Dif_fdir.c46 sc->hw.mac.ops.setup_rxpba(&sc->hw, 0, hdrm,
H A Dif_ixv.c431 error = hw->mac.ops.reset_hw(hw);
442 error = hw->mac.ops.init_hw(hw);
459 error = hw->mac.ops.get_link_state(hw, &sc->link_enabled);
605 hw->mac.ops.stop_adapter(hw);
608 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
612 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, 1);
615 hw->mac.ops.reset_hw(hw);
616 hw->mac.ops.start_hw(hw);
650 error = hw->mac.ops.get_link_state(hw, &sc->link_enabled);
657 hw->mac.ops
[all...]
H A Dif_sriov.c103 sc->hw.mbx.ops.write(&sc->hw, &msg, 1, vf->pool);
377 hw->mbx.ops.write(hw, resp, IXGBE_VF_PERMADDR_MSG_LEN, vf->pool);
568 hw->mbx.ops.write(hw, resp, IXGBE_VF_GET_QUEUES_RESP_LEN, vf->pool);
585 error = hw->mbx.ops.read(hw, msg, IXGBE_VFMAILBOX_SIZE, vf->pool);
646 if (hw->mbx.ops.check_for_rst(hw, vf->pool) == 0)
649 if (hw->mbx.ops.check_for_msg(hw, vf->pool) == 0)
652 if (hw->mbx.ops.check_for_ack(hw, vf->pool) == 0)
/freebsd-current/sys/contrib/dev/athk/ath10k/
H A Dce.c177 if (ce_state->ops->ce_set_src_ring_base_addr_hi) {
178 ce_state->ops->ce_set_src_ring_base_addr_hi(ar, ce_ctrl_addr,
282 if (ce_state->ops->ce_set_dest_ring_base_addr_hi) {
283 ce_state->ops->ce_set_dest_ring_base_addr_hi(ar, ce_ctrl_addr,
566 return ce_state->ops->ce_send_nolock(ce_state, per_transfer_context,
742 ret = pipe->ops->ce_rx_post_buf(pipe, ctx, paddr);
856 return ce_state->ops->ce_completed_recv_next_nolock(ce_state,
871 ret = ce_state->ops->ce_completed_recv_next_nolock(ce_state,
992 return ce_state->ops->ce_revoke_recv_next(ce_state,
1111 return ce_state->ops
[all...]
/freebsd-current/sys/dev/uart/
H A Duart_cpu_arm64.c101 di->ops = uart_getops(class);
/freebsd-current/lib/libc/rpc/
H A Dclnt_dg.c809 static struct clnt_ops ops; local
813 /* VARIABLES PROTECTED BY ops_lock: ops */
818 if (ops.cl_call == NULL) {
819 ops.cl_call = clnt_dg_call;
820 ops.cl_abort = clnt_dg_abort;
821 ops.cl_geterr = clnt_dg_geterr;
822 ops.cl_freeres = clnt_dg_freeres;
823 ops.cl_destroy = clnt_dg_destroy;
824 ops.cl_control = clnt_dg_control;
828 return (&ops);
[all...]
H A Dclnt_vc.c750 static struct clnt_ops ops; local
753 /* VARIABLES PROTECTED BY ops_lock: ops */
758 if (ops.cl_call == NULL) {
759 ops.cl_call = clnt_vc_call;
760 ops.cl_abort = clnt_vc_abort;
761 ops.cl_geterr = clnt_vc_geterr;
762 ops.cl_freeres = clnt_vc_freeres;
763 ops.cl_destroy = clnt_vc_destroy;
764 ops.cl_control = clnt_vc_control;
768 return (&ops);
[all...]
H A Dsvc_dg.c419 static struct xp_ops ops; local
422 /* VARIABLES PROTECTED BY ops_lock: ops */
425 if (ops.xp_recv == NULL) {
426 ops.xp_recv = svc_dg_recv;
427 ops.xp_stat = svc_dg_stat;
428 ops.xp_getargs = svc_dg_getargs;
429 ops.xp_reply = svc_dg_reply;
430 ops.xp_freeargs = svc_dg_freeargs;
431 ops.xp_destroy = svc_dg_destroy;
434 xprt->xp_ops = &ops;
[all...]
/freebsd-current/sys/dev/iwn/
H A Dif_iwn.c1221 struct iwn_ops *ops = &sc->ops; local
1225 ops->load_firmware = iwn4965_load_firmware;
1226 ops->read_eeprom = iwn4965_read_eeprom;
1227 ops->post_alive = iwn4965_post_alive;
1228 ops->nic_config = iwn4965_nic_config;
1229 ops->update_sched = iwn4965_update_sched;
1230 ops->get_temperature = iwn4965_get_temperature;
1231 ops->get_rssi = iwn4965_get_rssi;
1232 ops
1264 struct iwn_ops *ops = &sc->ops; local
2125 struct iwn_ops *ops = &sc->ops; local
2183 struct iwn_ops *ops = &sc->ops; local
3022 struct iwn_ops *ops = &sc->ops; local
3452 struct iwn_ops *ops = &sc->ops; local
3977 struct iwn_ops *ops = &sc->ops; local
4842 struct iwn_ops *ops = &sc->ops; local
5450 struct iwn_ops *ops = &sc->ops; local
5974 struct iwn_ops *ops = &sc->ops; local
6018 struct iwn_ops *ops = &sc->ops; local
6726 struct iwn_ops *ops = &sc->ops; local
7330 struct iwn_ops *ops = &sc->ops; local
7456 struct iwn_ops *ops = &sc->ops; local
7494 struct iwn_ops *ops = &sc->ops; local
7585 struct iwn_ops *ops = &sc->ops; local
7622 struct iwn_ops *ops = &sc->ops; local
8743 struct iwn_ops *ops = &sc->ops; local
[all...]
/freebsd-current/sys/dev/netmap/
H A Dnetmap_mem2.c182 struct netmap_mem_ops *ops; member in struct:netmap_mem_d
196 rv = nmd->ops->nmd_get_lut(nmd, lut);
209 rv = nmd->ops->nmd_get_info(nmd, size, memflags, memid);
228 pa = nmd->ops->nmd_ofstophys(nmd, off);
244 return nmd->ops->nmd_config(nmd);
253 rv = nmd->ops->nmd_if_offset(nmd, off);
262 nmd->ops->nmd_delete(nmd);
272 nifp = nmd->ops->nmd_if_new(nmd, na, priv);
284 nmd->ops->nmd_if_delete(nmd, na, nif);
295 rv = nmd->ops
1672 _netmap_mem_private_new(size_t size, struct netmap_obj_params *p, int grp_id, struct netmap_mem_ops *ops, uint64_t memtotal, int *perr) argument
[all...]
/freebsd-current/lib/libc/iconv/
H A Dcitrus_stdenc_template.h61 _FUNCNAME(stdenc_getops)(struct _citrus_stdenc_ops *ops, argument
65 memcpy(ops, &_FUNCNAME(stdenc_ops), sizeof(_FUNCNAME(stdenc_ops)));
/freebsd-current/sys/dev/cas/
H A Dif_casvar.h220 #define CAS_CDSYNC(sc, ops) \
221 bus_dmamap_sync((sc)->sc_cdmatag, (sc)->sc_cddmamap, (ops));
/freebsd-current/sys/dev/iommu/
H A Diommu.h103 const struct iommu_domain_map_ops *ops; member in struct:iommu_domain
189 const struct iommu_domain_map_ops *ops);
/freebsd-current/sys/dev/gem/
H A Dif_gemvar.h215 #define GEM_CDSYNC(sc, ops) \
216 bus_dmamap_sync((sc)->sc_cdmatag, (sc)->sc_cddmamap, (ops));
/freebsd-current/sys/dev/e1000/
H A De1000_vf.h216 struct e1000_mac_operations ops; member in struct:e1000_mac_info
249 struct e1000_mbx_operations ops; member in struct:e1000_mbx_info
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp199 StringRef ops = "!~*/+-<>?^:="; // List of operators local
208 size_t e = s.find_first_of(ops);
/freebsd-current/contrib/ofed/libirdma/
H A Dirdma_umain.c181 iwvctx->ibv_ctx.ops = irdma_ctx_ops;
263 dev->ibv_dev.ops = &irdma_dev_ops;
/freebsd-current/contrib/ofed/libibverbs/
H A Dverbs.h1464 struct ibv_context_ops ops; member in struct:ibv_context
1774 if (!pd->context->ops.alloc_mw) {
1779 mw = pd->context->ops.alloc_mw(pd, type);
1788 return mw->context->ops.dealloc_mw(mw);
1811 return mw->context->ops.bind_mw(qp, mw, mw_bind);
1919 return cq->context->ops.poll_cq(cq, num_entries, wc);
1933 return cq->context->ops.req_notify_cq(cq, solicited_only);
2023 return srq->context->ops.post_srq_recv(srq, recv_wr, bad_recv_wr);
2265 return qp->context->ops.post_send(qp, wr, bad_wr);
2274 return qp->context->ops
[all...]
/freebsd-current/sys/dev/hptiop/
H A Dhptiop.c214 ret = hba->ops->do_ioctl(hba,
893 hba->ops->post_msg(hba, msg);
896 hba->ops->iop_intr(hba);
1803 struct hptiop_adapter_ops *ops; local
1818 ops = &hptiop_mvfrey_ops;
1839 ops = &hptiop_itl_ops;
1844 ops = &hptiop_mv_ops;
1860 hba->ops = ops;
1862 KdPrint(("hba->ops
[all...]
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dkeytab.c135 * @param ops a backend to register.
144 const krb5_kt_ops *ops)
148 if (strlen(ops->prefix) > KRB5_KT_PREFIX_MAX_LEN - 1) {
161 memcpy(&tmp[context->num_kt_types], ops,
143 krb5_kt_register(krb5_context context, const krb5_kt_ops *ops) argument

Completed in 616 milliseconds

1234567891011>>