Lines Matching refs:sohandle
61 static void check_prop_labels(void *sohandle, void *fdt, const char *name,
73 p = dlsym(sohandle, name);
86 p = dlsym(sohandle, labels[i].labelname);
99 void *sohandle;
107 sohandle = dlopen(argv[1], RTLD_NOW);
108 if (!sohandle)
111 fdt = dlsym(sohandle, "dt_blob_start");
122 check_prop_labels(sohandle, fdt, "prop1", labels1, ARRAY_SIZE(labels1));
123 check_prop_labels(sohandle, fdt, "prop2", labels2, ARRAY_SIZE(labels2));
124 check_prop_labels(sohandle, fdt, "prop3", labels3, ARRAY_SIZE(labels3));