Searched refs:dlsym_fn (Results 1 – 1 of 1) sorted by relevance
/third_party/pulseaudio/src/utils/ |
D | padsp.c | 142 static inline fnptr dlsym_fn(void *handle, const char *symbol) { in dlsym_fn() function 150 _ioctl = (int (*)(int, int, void*)) dlsym_fn(RTLD_NEXT, "ioctl"); \ 158 _open = (int (*)(const char *, int, mode_t)) dlsym_fn(RTLD_NEXT, "open"); \ 166 ___open_2 = (int (*)(const char *, int)) dlsym_fn(RTLD_NEXT, "__open_2"); \ 174 _open64 = (int (*)(const char *, int, mode_t)) dlsym_fn(RTLD_NEXT, "open64"); \ 182 ___open64_2 = (int (*)(const char *, int)) dlsym_fn(RTLD_NEXT, "__open64_2"); \ 190 _close = (int (*)(int)) dlsym_fn(RTLD_NEXT, "close"); \ 198 _access = (int (*)(const char*, int)) dlsym_fn(RTLD_NEXT, "access"); \ 206 _stat = (int (*)(const char *, struct stat *)) dlsym_fn(RTLD_NEXT, "stat"); \ 214 _stat64 = (int (*)(const char *, struct stat64 *)) dlsym_fn(RTLD_NEXT, "stat64"); \ [all …]
|