Home
last modified time | relevance | path

Searched refs:byte_count (Results 1 – 3 of 3) sorted by relevance

/bionic/linker/
Dlinker_memory.cpp71 void* malloc(size_t byte_count) { in malloc() argument
72 return get_allocator().alloc(byte_count); in malloc()
75 void* memalign(size_t alignment, size_t byte_count) { in memalign() argument
76 return get_allocator().memalign(alignment, byte_count); in memalign()
83 void* realloc(void* p, size_t byte_count) { in realloc() argument
84 return get_allocator().realloc(p, byte_count); in realloc()
88 size_t byte_count; in reallocarray() local
89 if (__builtin_mul_overflow(item_count, item_size, &byte_count)) { in reallocarray()
93 return get_allocator().realloc(p, byte_count); in reallocarray()
/bionic/libc/bionic/
Dlegacy_32_bit_support.cpp62 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { in pread() argument
63 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pread()
67 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) { in pwrite() argument
68 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pwrite()
Dgrp_pwd.cpp603 int getpwnam_r(const char* name, passwd* pwd, char* buf, size_t byte_count, passwd** result) { in getpwnam_r() argument
604 return getpasswd_r(true, name, -1, pwd, buf, byte_count, result); in getpwnam_r()
607 int getpwuid_r(uid_t uid, passwd* pwd, char* buf, size_t byte_count, passwd** result) { in getpwuid_r() argument
608 return getpasswd_r(false, nullptr, uid, pwd, buf, byte_count, result); in getpwuid_r()