Lines Matching refs:d_handle
179 ark->d_handle = dlopen(dllpath, RTLD_LOCAL | RTLD_LAZY); in check_for_ext()
180 if (ark->d_handle == NULL) { in check_for_ext()
191 dlsym(ark->d_handle, "dev_init"); in check_for_ext()
196 dlsym(ark->d_handle, "dev_get_port_count"); in check_for_ext()
199 dlsym(ark->d_handle, "dev_uninit"); in check_for_ext()
202 dlsym(ark->d_handle, "dev_configure"); in check_for_ext()
205 dlsym(ark->d_handle, "dev_start"); in check_for_ext()
208 dlsym(ark->d_handle, "dev_stop"); in check_for_ext()
211 dlsym(ark->d_handle, "dev_close"); in check_for_ext()
214 dlsym(ark->d_handle, "link_update"); in check_for_ext()
217 dlsym(ark->d_handle, "dev_set_link_up"); in check_for_ext()
220 dlsym(ark->d_handle, "dev_set_link_down"); in check_for_ext()
224 dlsym(ark->d_handle, "stats_get"); in check_for_ext()
227 dlsym(ark->d_handle, "stats_reset"); in check_for_ext()
231 dlsym(ark->d_handle, "mac_addr_add"); in check_for_ext()
234 dlsym(ark->d_handle, "mac_addr_remove"); in check_for_ext()
238 dlsym(ark->d_handle, "mac_addr_set"); in check_for_ext()
242 dlsym(ark->d_handle, "set_mtu"); in check_for_ext()
378 dlclose(ark->d_handle); in eth_ark_dev_init()