Searched refs:byte_count (Results 1 - 4 of 4) sorted by relevance

/bionic/linker/
H A Dlinker_memory.cpp23 void* malloc(size_t byte_count) { argument
24 return g_linker_allocator.alloc(byte_count);
31 void* realloc(void* p, size_t byte_count) { argument
32 return g_linker_allocator.realloc(p, byte_count);
/bionic/libc/include/
H A Dmalloc.h31 extern void* malloc(size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(1)));
33 extern void* realloc(void* p, size_t byte_count) __wur __attribute__((alloc_size(2)));
36 extern void* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(2)));
/bionic/libc/bionic/
H A Dlegacy_32_bit_support.cpp71 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { argument
72 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset));
76 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) { argument
77 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset));
H A Dstubs.cpp79 passwd* dst, char* buf, size_t byte_count,
106 if (byte_count < required_byte_count) {
111 snprintf(buf, byte_count, "%s%c%s%c%s", src->pw_name, 0, src->pw_dir, 0, src->pw_shell);
128 char* buf, size_t byte_count, passwd** result) {
129 return do_getpw_r(1, name, -1, pwd, buf, byte_count, result);
133 char* buf, size_t byte_count, passwd** result) {
134 return do_getpw_r(0, NULL, uid, pwd, buf, byte_count, result);
78 do_getpw_r(int by_name, const char* name, uid_t uid, passwd* dst, char* buf, size_t byte_count, passwd** result) argument
127 getpwnam_r(const char* name, passwd* pwd, char* buf, size_t byte_count, passwd** result) argument
132 getpwuid_r(uid_t uid, passwd* pwd, char* buf, size_t byte_count, passwd** result) argument

Completed in 175 milliseconds