Lines Matching refs:d_handle
213 ark->d_handle = dlopen(dllpath, RTLD_LOCAL | RTLD_LAZY); in check_for_ext()
214 if (ark->d_handle == NULL) { in check_for_ext()
225 dlsym(ark->d_handle, "rte_pmd_ark_dev_init"); in check_for_ext()
230 dlsym(ark->d_handle, "rte_pmd_ark_dev_get_port_count"); in check_for_ext()
233 dlsym(ark->d_handle, "rte_pmd_ark_dev_uninit"); in check_for_ext()
236 dlsym(ark->d_handle, "rte_pmd_ark_dev_configure"); in check_for_ext()
239 dlsym(ark->d_handle, "rte_pmd_ark_dev_start"); in check_for_ext()
242 dlsym(ark->d_handle, "rte_pmd_ark_dev_stop"); in check_for_ext()
245 dlsym(ark->d_handle, "rte_pmd_ark_dev_close"); in check_for_ext()
248 dlsym(ark->d_handle, "rte_pmd_ark_link_update"); in check_for_ext()
251 dlsym(ark->d_handle, "rte_pmd_ark_dev_set_link_up"); in check_for_ext()
254 dlsym(ark->d_handle, "rte_pmd_ark_dev_set_link_down"); in check_for_ext()
258 dlsym(ark->d_handle, "rte_pmd_ark_stats_get"); in check_for_ext()
261 dlsym(ark->d_handle, "rte_pmd_ark_stats_reset"); in check_for_ext()
265 dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_add"); in check_for_ext()
268 dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_remove"); in check_for_ext()
272 dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_set"); in check_for_ext()
276 dlsym(ark->d_handle, "rte_pmd_ark_set_mtu"); in check_for_ext()
278 (rx_user_meta_hook_fn)dlsym(ark->d_handle, in check_for_ext()
281 (tx_user_meta_hook_fn)dlsym(ark->d_handle, in check_for_ext()
401 dlclose(ark->d_handle); in eth_ark_dev_init()