Searched refs:ops (Results 101 - 125 of 417) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Ddebugfs.c105 const struct file_operations *ops)
107 const struct file_operations *fops = ops ? ops : &fops_regval;
104 mt76_register_debugfs_fops(struct mt76_phy *phy, const struct file_operations *ops) argument
H A Dmcu.c12 const struct mt76_mcu_ops *ops = dev->mcu_ops; local
16 len = ops->headroom + len + ops->tailroom;
23 skb_reserve(skb, ops->headroom);
/freebsd-current/contrib/unifdef/
H A Dunifdef.c967 struct ops;
969 typedef Linetype eval_fn(const struct ops *, long *, const char **);
989 struct ops { struct
993 static const struct ops eval_ops[] = {
1015 static long prec(const struct ops *ops) argument
1017 return (ops - eval_ops);
1026 eval_unary(const struct ops *ops, long *valp, const char **cpp) argument
1036 debug("eval%d !", prec(ops));
1135 eval_table(const struct ops *ops, long *valp, const char **cpp) argument
[all...]
/freebsd-current/crypto/heimdal/kuser/
H A Dkswitch.c148 const krb5_cc_ops *ops; local
151 ops = krb5_cc_get_prefix_ops(kcc_context, opt->type_string);
152 if (ops == NULL)
155 asprintf(&str, "%s:%s", ops->prefix, opt->cache_string);
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dblake3.h75 /* const blake3_ops_t *ops */
76 const void *ops; member in struct:__anon388
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dmiscdevice.h58 misc->cdev->ops = misc->fops;
/freebsd-current/lib/libiconv_modules/mapper_serial/
H A Dcitrus_mapper_serial.c85 _citrus_mapper_serial_mapper_getops(struct _citrus_mapper_ops *ops) argument
88 memcpy(ops, &_citrus_mapper_serial_mapper_ops,
95 _citrus_mapper_parallel_mapper_getops(struct _citrus_mapper_ops *ops) argument
98 memcpy(ops, &_citrus_mapper_parallel_mapper_ops,
/freebsd-current/sys/crypto/openssl/
H A Dossl_aes_gcm.h68 const struct ossl_aes_gcm_ops *ops; member in struct:ossl_gcm_context
/freebsd-current/sys/contrib/dev/athk/
H A Dhw.c23 #define REG_READ (common->ops->read)
24 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg)
/freebsd-current/sys/contrib/dev/rtw88/
H A Dcoex.h332 chip->ops->coex_set_init(rtwdev);
340 if (!chip->ops->coex_set_ant_switch)
343 chip->ops->coex_set_ant_switch(rtwdev, ctrl_type, pos_type);
350 chip->ops->coex_set_gnt_fix(rtwdev);
357 chip->ops->coex_set_gnt_debug(rtwdev);
364 chip->ops->coex_set_rfe_type(rtwdev);
371 chip->ops->coex_set_wl_tx_power(rtwdev, wl_pwr);
379 chip->ops->coex_set_wl_rx_gain(rtwdev, low_gain);
/freebsd-current/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_tar_001_pos.ksh73 set -A ops " A+everyone@:execute:allow" "a-x" "777"
92 while (( i < ${#ops[*]} ))
95 "'$CHMOD ${ops[i]}'."
98 log_must $CHMOD ${ops[i]} $obj
H A Dzfs_acl_cpio_001_pos.ksh74 set -A ops "A+everyone@:execute:allow" \
98 while (( i < ${#ops[*]} )); do
106 "'$CHMOD ${ops[i]}'."
108 log_must usr_exec $CHMOD ${ops[i]} $obj
/freebsd-current/lib/libc/rpc/
H A Dauth_unix.c351 static struct auth_ops ops; local
353 /* VARIABLES PROTECTED BY ops_lock: ops */
356 if (ops.ah_nextverf == NULL) {
357 ops.ah_nextverf = authunix_nextverf;
358 ops.ah_marshal = authunix_marshal;
359 ops.ah_validate = authunix_validate;
360 ops.ah_refresh = authunix_refresh;
361 ops.ah_destroy = authunix_destroy;
364 return (&ops);
/freebsd-current/sys/dev/nvmf/
H A Dnvmf_transport_internal.h118 #define NVMF_TRANSPORT(name, ops) \
122 &(ops) \
/freebsd-current/sys/sys/
H A Dcons.h102 #define CONSOLE_DEVICE(name, ops, arg) \
104 .cn_ops = &ops, \
H A Dkobj.h60 kobj_ops_t ops /* compiled method table */
70 kobj_ops_t ops
77 * The ops table is used as a cache of results from kobj_lookup_method().
183 * the ops table.(for use before malloc is initialised).
185 void kobj_class_compile_static(kobj_class_t cls, kobj_ops_t ops);
/freebsd-current/sys/security/mac_veriexec/
H A Dveriexec_fingerprint.c150 ctx = malloc(ip->ops->context_size, M_VERIEXEC, M_WAITOK);
152 (ip->ops->init)(ctx);
166 (ip->ops->update)(ctx, filebuf, nread);
168 (ip->ops->final)(fingerprint, ctx);
171 for (offset = 0; offset < ip->ops->digest_len; offset++)
198 return memcmp(ip->fingerprint, digest, ip->ops->digest_len);
378 * @return 0 if the ops were added successfully, otherwise an error code.
384 /* Sanity check the ops */
390 /* Make sure we do not already have ops for this digest type */
394 /* Add the ops t
[all...]
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7615/
H A Dsdio.c101 struct ieee80211_ops *ops; local
106 ops = devm_kmemdup(&func->dev, &mt7615_ops, sizeof(mt7615_ops),
108 if (!ops)
111 mdev = mt76_alloc_device(&func->dev, sizeof(*dev), ops, &drv_ops);
119 dev->ops = ops;
H A Dmmio.c187 struct ieee80211_ops *ops; local
192 ops = devm_kmemdup(pdev, &mt7615_ops, sizeof(mt7615_ops), GFP_KERNEL);
193 if (!ops)
196 mdev = mt76_alloc_device(pdev, sizeof(*dev), ops, &drv_ops);
205 dev->ops = ops;
/freebsd-current/sys/contrib/dev/rtw89/
H A Dcore.h2989 const struct rtw89_hci_ops *ops; member in struct:rtw89_hci_info
3387 const struct rtw89_chip_ops *ops; member in struct:rtw89_chip_info
4286 const struct ieee80211_ops *ops; member in struct:rtw89_dev
4393 return rtwdev->hci.ops->tx_write(rtwdev, tx_req);
4398 rtwdev->hci.ops->reset(rtwdev);
4403 return rtwdev->hci.ops->start(rtwdev);
4408 rtwdev->hci.ops->stop(rtwdev);
4413 return rtwdev->hci.ops->deinit(rtwdev);
4418 rtwdev->hci.ops->pause(rtwdev, pause);
4423 rtwdev->hci.ops
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/fw/api/
H A Dpower.h433 * @ops: operations, value from &enum iwl_geo_per_chain_offset_operation
437 __le32 ops; member in struct:iwl_geo_tx_power_profiles_cmd_v1
443 * @ops: operations, value from &enum iwl_geo_per_chain_offset_operation
448 __le32 ops; member in struct:iwl_geo_tx_power_profiles_cmd_v2
455 * @ops: operations, value from &enum iwl_geo_per_chain_offset_operation
460 __le32 ops; member in struct:iwl_geo_tx_power_profiles_cmd_v3
467 * @ops: operations, value from &enum iwl_geo_per_chain_offset_operation
472 __le32 ops; member in struct:iwl_geo_tx_power_profiles_cmd_v4
479 * @ops: operations, value from &enum iwl_geo_per_chain_offset_operation
484 __le32 ops; member in struct:iwl_geo_tx_power_profiles_cmd_v5
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/
H A Diwl-trans.c20 const struct iwl_trans_ops *ops,
40 trans->ops = ops;
43 WARN_ON(!ops->wait_txq_empty && !ops->wait_tx_queues_empty);
18 iwl_trans_alloc(unsigned int priv_size, struct device *dev, const struct iwl_trans_ops *ops, const struct iwl_cfg_trans_params *cfg_trans) argument
/freebsd-current/sys/contrib/dev/iwlwifi/fw/
H A Dinit.c18 const struct iwl_fw_runtime_ops *ops, void *ops_ctx,
30 fwrt->ops = ops;
16 iwl_fw_runtime_init(struct iwl_fw_runtime *fwrt, struct iwl_trans *trans, const struct iwl_fw *fw, const struct iwl_fw_runtime_ops *ops, void *ops_ctx, const struct iwl_dump_sanitize_ops *sanitize_ops, void *sanitize_ctx, struct dentry *dbgfs_dir) argument
/freebsd-current/tools/tools/vop_table/
H A Dvop_table.tcl6 global names ops op
39 set ops($o) 0
62 set opn [lsort [array names ops]]
/freebsd-current/sys/dev/dwc/
H A Dif_dwc_rk.c128 struct if_dwc_rk_ops *ops; member in struct:if_dwc_rk_softc
364 if (sc->ops->set_delays)
365 sc->ops->set_delays(sc);
496 sc->ops = (struct if_dwc_rk_ops *)ofw_bus_search_compatible(dev, compat_data)->ocd_data;
532 if (sc->ops->set_phy_mode)
533 sc->ops->set_phy_mode(sc);
535 if (sc->ops->set_delays)
536 sc->ops->set_delays(sc);
557 if (sc->ops->phy_powerup)
558 sc->ops
[all...]

Completed in 485 milliseconds

1234567891011>>