Lines Matching refs:INTERCEPTOR
70 INTERCEPTOR(int, open, const char *path, int oflag, ...) { in INTERCEPTOR() function
84 INTERCEPTOR(int, openat, int fd, const char *path, int oflag, ...) { in INTERCEPTOR() function
98 INTERCEPTOR(int, creat, const char *path, mode_t mode) { in INTERCEPTOR() function
106 INTERCEPTOR(int, fcntl, int filedes, int cmd, ...) { in INTERCEPTOR() function
127 INTERCEPTOR(int, close, int filedes) { in INTERCEPTOR() function
132 INTERCEPTOR(FILE *, fopen, const char *path, const char *mode) { in INTERCEPTOR() function
137 INTERCEPTOR(size_t, fread, void *ptr, size_t size, size_t nitems, in INTERCEPTOR() function
143 INTERCEPTOR(size_t, fwrite, const void *ptr, size_t size, size_t nitems, in INTERCEPTOR() function
149 INTERCEPTOR(int, fclose, FILE *stream) { in INTERCEPTOR() function
154 INTERCEPTOR(int, fputs, const char *s, FILE *stream) { in INTERCEPTOR() function
160 INTERCEPTOR(int, puts, const char *s) { in INTERCEPTOR() function
170 INTERCEPTOR(void, OSSpinLockLock, volatile OSSpinLock *lock) { in INTERCEPTOR() function
176 INTERCEPTOR(void, os_unfair_lock_lock, os_unfair_lock_t lock) { in INTERCEPTOR() function
181 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *spinlock) { in INTERCEPTOR() function
187 INTERCEPTOR(int, pthread_create, pthread_t *thread, const pthread_attr_t *attr, in INTERCEPTOR() function
193 INTERCEPTOR(int, pthread_mutex_lock, pthread_mutex_t *mutex) { in INTERCEPTOR() function
198 INTERCEPTOR(int, pthread_mutex_unlock, pthread_mutex_t *mutex) { in INTERCEPTOR() function
203 INTERCEPTOR(int, pthread_join, pthread_t thread, void **value_ptr) { in INTERCEPTOR() function
208 INTERCEPTOR(int, pthread_cond_signal, pthread_cond_t *cond) { in INTERCEPTOR() function
213 INTERCEPTOR(int, pthread_cond_broadcast, pthread_cond_t *cond) { in INTERCEPTOR() function
218 INTERCEPTOR(int, pthread_cond_wait, pthread_cond_t *cond, in INTERCEPTOR() function
224 INTERCEPTOR(int, pthread_cond_timedwait, pthread_cond_t *cond, in INTERCEPTOR() function
230 INTERCEPTOR(int, pthread_rwlock_rdlock, pthread_rwlock_t *lock) { in INTERCEPTOR() function
235 INTERCEPTOR(int, pthread_rwlock_unlock, pthread_rwlock_t *lock) { in INTERCEPTOR() function
240 INTERCEPTOR(int, pthread_rwlock_wrlock, pthread_rwlock_t *lock) { in INTERCEPTOR() function
247 INTERCEPTOR(unsigned int, sleep, unsigned int s) { in INTERCEPTOR() function
252 INTERCEPTOR(int, usleep, useconds_t u) { in INTERCEPTOR() function
257 INTERCEPTOR(int, nanosleep, const struct timespec *rqtp, in INTERCEPTOR() function
265 INTERCEPTOR(void *, calloc, SIZE_T num, SIZE_T size) { in INTERCEPTOR() function
273 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function
283 INTERCEPTOR(void *, malloc, SIZE_T size) { in INTERCEPTOR() function
291 INTERCEPTOR(void *, realloc, void *ptr, SIZE_T size) { in INTERCEPTOR() function
299 INTERCEPTOR(void *, reallocf, void *ptr, SIZE_T size) { in INTERCEPTOR() function
304 INTERCEPTOR(void *, valloc, SIZE_T size) { in INTERCEPTOR() function
310 INTERCEPTOR(void *, aligned_alloc, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
319 INTERCEPTOR(int, posix_memalign, void **memptr, size_t alignment, size_t size) { in INTERCEPTOR() function
325 INTERCEPTOR(void *, memalign, size_t alignment, size_t size) { in INTERCEPTOR() function
332 INTERCEPTOR(void *, pvalloc, size_t size) { in INTERCEPTOR() function
339 INTERCEPTOR(int, socket, int domain, int type, int protocol) { in INTERCEPTOR() function
344 INTERCEPTOR(ssize_t, send, int sockfd, const void *buf, size_t len, int flags) { in INTERCEPTOR() function
349 INTERCEPTOR(ssize_t, sendmsg, int socket, const struct msghdr *message, in INTERCEPTOR() function
355 INTERCEPTOR(ssize_t, sendto, int socket, const void *buffer, size_t length, in INTERCEPTOR() function
361 INTERCEPTOR(ssize_t, recv, int socket, void *buffer, size_t length, int flags) { in INTERCEPTOR() function
366 INTERCEPTOR(ssize_t, recvfrom, int socket, void *buffer, size_t length, in INTERCEPTOR() function
372 INTERCEPTOR(ssize_t, recvmsg, int socket, struct msghdr *message, int flags) { in INTERCEPTOR() function
377 INTERCEPTOR(int, shutdown, int socket, int how) { in INTERCEPTOR() function