| /bionic/libc/include/bits/fortify/ |
| D | stdio.h | 41 int vsnprintf(char* const __pass_object_size dest, size_t size, const char* format, va_list ap) in vsnprintf() 67 int snprintf(char* const __pass_object_size dest, size_t size, const char* format, ...) in snprintf() 96 size_t fread(void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream) in fread() 111 size_t fwrite(const void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream) in fwrite() 129 char* fgets(char* const __pass_object_size dest, int size, FILE* stream) in fgets() 161 int snprintf(char* dest, size_t size, const char* format, ...) { in snprintf() 173 size_t fread(void* buf, size_t size, size_t count, FILE* stream) { in fread() 197 size_t fwrite(const void* buf, size_t size, size_t count, FILE* stream) { in fwrite() 223 char *fgets(char* dest, int size, FILE* stream) { in fgets()
|
| D | unistd.h | 72 char* getcwd(char* const __pass_object_size buf, size_t size) in getcwd() 179 ssize_t readlink(const char* path, char* const __pass_object_size buf, size_t size) in readlink() 193 ssize_t readlinkat(int dirfd, const char* path, char* const __pass_object_size buf, size_t size) in readlinkat() 238 char* getcwd(char* buf, size_t size) __overloadable { in getcwd() 401 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink() 424 ssize_t readlinkat(int dirfd, const char* path, char* buf, size_t size) { in readlinkat()
|
| /bionic/libc/bionic/ |
| D | new.cpp | 26 void* operator new(std::size_t size) { in operator new() 34 void* operator new[](std::size_t size) { in operator new[]() 50 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() 54 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]()
|
| D | android_set_abort_message.cpp | 41 size_t size; member 62 size_t size = sizeof(abort_msg_t) + strlen(msg) + 1; in android_set_abort_message() local
|
| D | jemalloc_wrapper.cpp | 26 size_t size = __BIONIC_ALIGN(bytes, pagesize); in je_pvalloc() local 40 void* je_memalign_round_up_boundary(size_t boundary, size_t size) { in je_memalign_round_up_boundary()
|
| D | scandir.cpp | 41 size_t size() { in size() function in ScandirResult 87 size_t size = ((original->d_reclen + 3) & ~3); in CopyDirent() local 126 size_t size = names.size(); in scandirat() local
|
| D | mmap.cpp | 44 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) { in mmap64() 75 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { in mmap()
|
| D | readlink.cpp | 34 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink()
|
| D | getcwd.cpp | 36 char* getcwd(char* buf, size_t size) { in getcwd()
|
| D | flistxattr.cpp | 40 ssize_t flistxattr(int fd, char *list, size_t size) { in flistxattr()
|
| D | statvfs.cpp | 26 # define __fstatfs64(fd,size,buf) __fstatfs(fd,buf) argument 27 # define __statfs64(path,size,buf) __statfs(path,buf) argument
|
| D | fgetxattr.cpp | 40 ssize_t fgetxattr(int fd, const char *name, void *value, size_t size) { in fgetxattr()
|
| /bionic/libc/kernel/uapi/asm-generic/ |
| D | ioctl.h | 46 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _I… argument 49 #define _IOR(type,nr,size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size))) argument 50 #define _IOW(type,nr,size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument 51 #define _IOWR(type,nr,size) _IOC(_IOC_READ | _IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument 52 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ, (type), (nr), sizeof(size)) argument 53 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size)) argument 54 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ | _IOC_WRITE, (type), (nr), sizeof(size)) argument
|
| /bionic/libc/upstream-openbsd/lib/libc/net/ |
| D | inet_ntop.c | 45 inet_ntop(int af, const void *src, char *dst, socklen_t size) in inet_ntop() 72 inet_ntop4(const u_char *src, char *dst, size_t size) in inet_ntop4() 94 inet_ntop6(const u_char *src, char *dst, size_t size) in inet_ntop6()
|
| /bionic/libc/malloc_hooks/ |
| D | malloc_hooks.cpp | 125 void* hooks_malloc(size_t size) { in hooks_malloc() 155 size_t size; in hooks_calloc() local 176 void* hooks_aligned_alloc(size_t alignment, size_t size) { in hooks_aligned_alloc() 191 int hooks_posix_memalign(void** memptr, size_t alignment, size_t size) { in hooks_posix_memalign() 222 size_t size = __BIONIC_ALIGN(bytes, pagesize); in hooks_pvalloc() local 231 void* hooks_valloc(size_t size) { in hooks_valloc()
|
| /bionic/libc/malloc_debug/ |
| D | malloc_debug.cpp | 176 static void* InitHeader(Header* header, void* orig_pointer, size_t size) { in InitHeader() 310 static void* InternalMalloc(size_t size) { in InternalMalloc() 360 void* debug_malloc(size_t size) { in debug_malloc() 654 size_t size; in debug_calloc() local 709 void* debug_aligned_alloc(size_t alignment, size_t size) { in debug_aligned_alloc() 720 int debug_posix_memalign(void** memptr, size_t alignment, size_t size) { in debug_posix_memalign() 734 int debug_iterate(uintptr_t base, size_t size, void (*callback)(uintptr_t, size_t, void*), in debug_iterate() argument 782 size_t size = __BIONIC_ALIGN(bytes, pagesize); in debug_pvalloc() local 791 void* debug_valloc(size_t size) { in debug_valloc()
|
| D | RecordData.cpp | 57 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) {} in MallocEntry() 69 CallocEntry::CallocEntry(void* pointer, size_t nmemb, size_t size) in CallocEntry() 76 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry() 84 MemalignEntry::MemalignEntry(void* pointer, size_t size, size_t alignment) in MemalignEntry()
|
| /bionic/libc/kernel/uapi/drm/ |
| D | armada_drm.h | 30 __u32 size; member 37 __u64 size; member 45 __u32 size; member
|
| D | sis_drm.h | 41 unsigned long size; member 45 unsigned long offset, size; member 48 unsigned long offset, size; member
|
| /bionic/libc/include/ |
| D | alloca.h | 34 #define alloca(size) __builtin_alloca(size) argument
|
| /bionic/tests/ |
| D | stack_protector_test_helper.cpp | 24 int size = static_cast<int>(sizeof(buf) + 1); in modify_stack_protector_test() local
|
| /bionic/linker/ |
| D | linker_mapped_file_fragment.h | 43 size_t size() const { return size_; } in size() function
|
| /bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
| D | reallocarray.c | 30 reallocarray(void *optr, size_t nmemb, size_t size) in reallocarray()
|
| /bionic/libc/dns/resolv/ |
| D | res_debug.h | 25 # define DprintQ(cond, args, query, size) /*empty*/ argument 30 # define DprintQ(cond, args, query, size) if (cond) {\ argument
|
| /bionic/libc/kernel/uapi/asm-x86/asm/ |
| D | mtrr.h | 28 unsigned int size; member 34 unsigned int size; member 40 __u32 size; member 45 __u32 size; member
|