Searched refs:byte_count (Results 1 – 4 of 4) sorted by relevance
/bionic/linker/ |
D | linker_memory.cpp | 70 void* malloc(size_t byte_count) { in malloc() argument 71 return get_allocator().alloc(byte_count); in malloc() 78 void* realloc(void* p, size_t byte_count) { in realloc() argument 79 return get_allocator().realloc(p, byte_count); in realloc()
|
/bionic/libc/include/ |
D | malloc.h | 33 void* malloc(size_t byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(1) __wur; 35 void* realloc(void* p, size_t byte_count) __BIONIC_ALLOC_SIZE(2) __wur; 38 void* memalign(size_t alignment, size_t byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(2) __wur;
|
/bionic/libc/bionic/ |
D | legacy_32_bit_support.cpp | 74 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { in pread() argument 75 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pread() 79 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) { in pwrite() argument 80 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pwrite()
|
D | grp_pwd.cpp | 77 passwd* dst, char* buf, size_t byte_count, in do_getpw_r() argument 104 if (byte_count < required_byte_count) { in do_getpw_r() 109 snprintf(buf, byte_count, "%s%c%s%c%s", src->pw_name, 0, src->pw_dir, 0, src->pw_shell); in do_getpw_r() 127 char* buf, size_t byte_count, passwd** result) { in getpwnam_r() argument 128 return do_getpw_r(1, name, -1, pwd, buf, byte_count, result); in getpwnam_r() 132 char* buf, size_t byte_count, passwd** result) { in getpwuid_r() argument 133 return do_getpw_r(0, NULL, uid, pwd, buf, byte_count, result); in getpwuid_r()
|