Lines Matching defs:version
16 * published by the Free Software Foundation; either version 2.1 of
17 * the License, or (at your option) any later version.
203 * \param version Version of the symbol.
206 * This function checks that the symbol with the version appended to its name
209 static int snd_dlsym_verify(void *handle, const char *name, const char *version)
217 vname = alloca(1 + strlen(name) + strlen(version) + 1);
222 strcat(vname, version);
226 SNDERR("unable to verify version for symbol %s", name);
237 * \param version Version of the symbol.
242 * This special version of the \c dlsym function checks also the version
246 void *snd_dlsym(void *handle, const char *name, const char *version)
265 if (version) {
266 err = snd_dlsym_verify(handle, name, version);
312 const char *version, int verbose)
345 func = snd_dlsym(dlobj, name, version);
373 const char *version, int verbose)
379 c = snd_dlobj_cache_get0(lib, name, version, verbose);
387 const char *version, int verbose)
393 c = snd_dlobj_cache_get0(lib, name, version, verbose);