Lines Matching refs:xlib
44 char *xlib, *path, errbuf[256];
57 xlib = malloc(strlen(lib) + strlen(path) + 1 + 1);
58 if (xlib == NULL) {
63 strcpy(xlib, path);
64 strcat(xlib, "/");
65 strcat(xlib, lib);
66 h = snd_dlopen(xlib, RTLD_NOW, errbuf, sizeof(errbuf));
68 SNDERR("Unable to open library '%s': %s", xlib, errbuf);
73 SNDERR("Symbol 'alsa_mixer_sbasic_initpriv' was not found in '%s'", xlib);
78 SNDERR("Symbol 'alsa_mixer_sbasic_event' was not found in '%s'", xlib);
83 SNDERR("Symbol 'alsa_mixer_sbasic_selreg' was not found in '%s'", xlib);
88 SNDERR("Symbol 'alsa_mixer_sbasic_sidreg' was not found in '%s'", xlib);
91 free(xlib);
104 free(xlib);