Home
last modified time | relevance | path

Searched defs:__pass_object_size (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/include/bits/fortify/
Dstring.h63 char* stpcpy(char* const dst __pass_object_size, const char* src) in stpcpy()
74 char* strcpy(char* const dst __pass_object_size, const char* src) in strcpy()
83 char* strcat(char* const dst __pass_object_size, const char* src) __overloadable { in strcat()
88 char* strncat(char* const dst __pass_object_size, const char* src, size_t n) __overloadable { in strncat()
105 void* memchr(const void* const s __pass_object_size, int c, size_t n) __overloadable { in memchr()
129 char* stpncpy(char* const dst __pass_object_size, const char* const src __pass_object_size, size_t … in stpncpy()
143 char* strncpy(char* const dst __pass_object_size, const char* const src __pass_object_size, size_t … in strncpy()
159 size_t strlcpy(char* const dst __pass_object_size, const char* src, size_t size) __overloadable { in strlcpy()
170 size_t strlcat(char* const dst __pass_object_size, const char* src, size_t size) __overloadable { in strlcat()
187 size_t strlen(const char* const s __pass_object_size) in strlen()
[all …]
Dpoll.h41 int poll(struct pollfd* const fds __pass_object_size, nfds_t fd_count, int timeout) in poll()
55 int ppoll(struct pollfd* const fds __pass_object_size, nfds_t fd_count, const struct timespec* time… in ppoll()
70 int ppoll64(struct pollfd* const fds __pass_object_size, nfds_t fd_count, const struct timespec* ti… in ppoll64()
/bionic/libc/include/
Dstring.h155 void* __bionic_memchr(const void* const s __pass_object_size, int c, size_t n) { in __bionic_memchr()
160 const void* memchr(const void* const s __pass_object_size, int c, size_t n) in memchr()
166 void* memchr(void* const s __pass_object_size, int c, size_t n) __prefer_this_overload { in memchr()
171 char* __bionic_strchr(const char* const s __pass_object_size, int c) { in __bionic_strchr()
176 const char* strchr(const char* const s __pass_object_size, int c) in strchr()
182 char* strchr(char* const s __pass_object_size, int c) in strchr()
188 char* __bionic_strrchr(const char* const s __pass_object_size, int c) { in __bionic_strrchr()
193 const char* strrchr(const char* const s __pass_object_size, int c) __prefer_this_overload { in strrchr()
198 char* strrchr(char* const s __pass_object_size, int c) __prefer_this_overload { in strrchr()
/bionic/libc/include/sys/
Dcdefs.h288 #define __pass_object_size __pass_object_size_n(__bos_level) macro