| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_bus.h | 92 typedef struct rte_device * 93 (*rte_bus_find_device_t)(const struct rte_device *start, rte_dev_cmp_t cmp, 107 typedef int (*rte_bus_plug_t)(struct rte_device *dev); 120 typedef int (*rte_bus_unplug_t)(struct rte_device *dev); 160 typedef int (*rte_dev_dma_map_t)(struct rte_device *dev, void *addr, 181 typedef int (*rte_dev_dma_unmap_t)(struct rte_device *dev, void *addr, 196 typedef int (*rte_bus_hot_unplug_handler_t)(struct rte_device *dev); 363 struct rte_bus *rte_bus_find_by_device(const struct rte_device *dev);
|
| H A D | rte_dev.h | 92 struct rte_device { struct 93 TAILQ_ENTRY(rte_device) next; /**< Next device */ 109 int rte_dev_is_probed(const struct rte_device *dev); argument 169 int rte_dev_remove(struct rte_device *dev); 190 typedef int (*rte_dev_cmp_t)(const struct rte_device *dev, const void *data); 244 struct rte_device *device; /**< current position. */ 321 struct rte_device * 479 rte_dev_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len); 503 rte_dev_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova,
|
| /f-stack/dpdk/drivers/common/qat/ |
| H A D | qat_device.h | 41 struct rte_device sym_rte_dev; 47 struct rte_device asym_rte_dev; 53 struct rte_device comp_rte_dev;
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_dev.c | 72 static int cmp_dev_name(const struct rte_device *dev, const void *_name) in cmp_dev_name() 80 rte_dev_is_probed(const struct rte_device *dev) in rte_dev_is_probed() 131 local_dev_probe(const char *devargs, struct rte_device **new_dev) in local_dev_probe() 133 struct rte_device *dev; in local_dev_probe() 199 struct rte_device *dev; in rte_dev_probe() 291 struct rte_device *dev; in rte_eal_hotplug_remove() 311 local_dev_remove(struct rte_device *dev) in local_dev_remove() 332 rte_dev_remove(struct rte_device *dev) in rte_dev_remove() 682 struct rte_device *dev = NULL; in bus_next_dev_cmp() 726 struct rte_device * [all …]
|
| H A D | eal_common_bus.c | 139 cmp_rte_device(const struct rte_device *dev1, const void *_dev2) in cmp_rte_device() 141 const struct rte_device *dev2 = _dev2; in cmp_rte_device() 149 struct rte_device *dev; in bus_find_device() 156 rte_bus_find_by_device(const struct rte_device *dev) in rte_bus_find_by_device()
|
| H A D | eal_private.h | 506 int local_dev_probe(const char *devargs, struct rte_device **new_dev); 516 int local_dev_remove(struct rte_device *dev);
|
| H A D | hotplug_mp.c | 22 static int cmp_dev_name(const struct rte_device *dev, const void *_name) in cmp_dev_name() 92 struct rte_device *dev; in __handle_secondary_request() 234 struct rte_device *dev; in __handle_primary_request()
|
| /f-stack/dpdk/drivers/bus/vdev/ |
| H A D | vdev_private.h | 12 struct rte_device * 13 rte_vdev_find_device(const struct rte_device *start,
|
| H A D | vdev_params.c | 26 vdev_dev_match(const struct rte_device *dev, in vdev_dev_match() 53 struct rte_device *dev; in rte_vdev_dev_iterate()
|
| H A D | vdev.c | 138 vdev_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in vdev_dma_map() 163 vdev_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in vdev_dma_unmap() 383 static int vdev_plug(struct rte_device *dev); 561 struct rte_device * 562 rte_vdev_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_vdev_find_device() 586 vdev_plug(struct rte_device *dev) in vdev_plug() 592 vdev_unplug(struct rte_device *dev) in vdev_unplug()
|
| /f-stack/dpdk/lib/librte_vhost/ |
| H A D | rte_vdpa_dev.h | 75 struct rte_device *device; 91 rte_vdpa_register_device(struct rte_device *rte_dev,
|
| H A D | vdpa.c | 62 struct rte_device * 72 rte_vdpa_register_device(struct rte_device *rte_dev, in rte_vdpa_register_device() 300 const struct rte_device *rte_dev) in vdpa_dev_match() 310 const struct rte_device *rte_dev); 314 struct rte_device *rte_dev) in vdpa_find_device()
|
| H A D | rte_vdpa.h | 63 struct rte_device *
|
| /f-stack/dpdk/drivers/bus/pci/ |
| H A D | pci_params.c | 39 pci_dev_match(const struct rte_device *dev, in pci_dev_match() 64 struct rte_device *dev; in rte_pci_dev_iterate()
|
| H A D | pci_common.c | 444 static struct rte_device * 445 pci_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in pci_find_device() 496 pci_hot_unplug_handler(struct rte_device *dev) in pci_hot_unplug_handler() 558 pci_plug(struct rte_device *dev) in pci_plug() 564 pci_unplug(struct rte_device *dev) in pci_unplug() 580 pci_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in pci_dma_map() 603 pci_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova, size_t len) in pci_dma_unmap()
|
| /f-stack/dpdk/lib/librte_rawdev/ |
| H A D | rte_rawdev.h | 293 struct rte_device *device; 317 struct rte_device *device;
|
| /f-stack/dpdk/drivers/bus/ifpga/ |
| H A D | ifpga_bus.c | 360 ifpga_plug(struct rte_device *dev) in ifpga_plug() 380 ifpga_unplug(struct rte_device *dev) in ifpga_unplug() 404 static struct rte_device * 405 ifpga_find_device(const struct rte_device *start, in ifpga_find_device()
|
| /f-stack/dpdk/drivers/crypto/nitrox/ |
| H A D | nitrox_device.h | 18 struct rte_device rte_sym_dev;
|
| /f-stack/dpdk/examples/vdpa/ |
| H A D | main.c | 107 struct rte_device *dev; in new_device() 135 struct rte_device *dev; in destroy_device() 295 struct rte_device *dev; in cmd_list_vdpa_devices_parsed() 529 struct rte_device *dev; in main()
|
| /f-stack/dpdk/drivers/bus/fslmc/ |
| H A D | fslmc_bus.c | 481 static struct rte_device * 482 rte_fslmc_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_fslmc_find_device() 597 fslmc_bus_plug(struct rte_device *dev __rte_unused) in fslmc_bus_plug() 604 fslmc_bus_unplug(struct rte_device *dev __rte_unused) in fslmc_bus_unplug()
|
| /f-stack/dpdk/drivers/crypto/bcmfs/ |
| H A D | bcmfs_device.h | 71 struct rte_device sym_rte_dev;
|
| /f-stack/dpdk/lib/librte_compressdev/ |
| H A D | rte_compressdev_internal.h | 79 struct rte_device *device;
|
| /f-stack/dpdk/drivers/net/bonding/ |
| H A D | rte_eth_bond_args.c | 61 bond_pci_addr_cmp(const struct rte_device *dev, const void *_pci_addr) in bond_pci_addr_cmp() 78 struct rte_device *dev; in parse_port_id()
|
| /f-stack/dpdk/drivers/bus/vmbus/ |
| H A D | vmbus_common.c | 269 static struct rte_device * 270 vmbus_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in vmbus_find_device()
|
| /f-stack/dpdk/drivers/bus/dpaa/ |
| H A D | dpaa_bus.c | 676 static struct rte_device * 677 rte_dpaa_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, in rte_dpaa_find_device() 720 dpaa_bus_plug(struct rte_device *dev __rte_unused) in dpaa_bus_plug() 727 dpaa_bus_unplug(struct rte_device *dev __rte_unused) in dpaa_bus_unplug()
|