Home | History | Annotate | Download | only in ese_replay

Lines Matching refs:hw

28 #include "hw.h"
33 printf("\t%s\t(%s / %s)\n", supported->hw[i].name, supported->hw[i].sym,
34 supported->hw[i].lib);
41 if (!strcmp(name, supported->hw[i].name)) {
49 void release_hardware(const struct Hardware *hw) {
50 void *hw_handle = dlopen(hw->lib, RTLD_NOW);
56 bool initialize_hardware(struct EseInterface *ese, const struct Hardware *hw) {
57 void *hw_handle = dlopen(hw->lib, RTLD_NOW);
62 const struct EseOperations **hw_ops = dlsym(hw_handle, hw->sym);
68 ese_init(ese, *hw);