Lines Matching refs:addr
131 void* mmap(void* addr, size_t length, int prot, int flags, int fd, off_t offset)
135 return dispatch_table->mmap(addr, length, prot, flags, fd, offset);
137 return MuslMalloc(mmap)(addr, length, prot, flags, fd, offset);
141 int munmap(void* addr, size_t length)
145 return dispatch_table->munmap(addr, length);
147 return MuslMalloc(munmap)(addr, length);
193 size_t malloc_usable_size(void* addr)
197 return dispatch_table->malloc_usable_size(addr);
200 return libc_gwp_asan_malloc_usable_size(addr);
202 return MuslMalloc(malloc_usable_size)(addr);