Home
last modified time | relevance | path

Searched refs:__bos (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/include/
Dpoll.h57 return __poll_chk(fds, fd_count, timeout, __bos(fds)); in poll()
59 if (__bos(fds) != __BIONIC_FORTIFY_UNKNOWN_SIZE) { in poll()
61 return __poll_chk(fds, fd_count, timeout, __bos(fds)); in poll()
62 } else if (__bos(fds) / sizeof(*fds) < fd_count) { in poll()
73 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds)); in ppoll()
75 if (__bos(fds) != __BIONIC_FORTIFY_UNKNOWN_SIZE) { in ppoll()
77 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds)); in ppoll()
78 } else if (__bos(fds) / sizeof(*fds) < fd_count) { in ppoll()
Dstring.h142 size_t bos = __bos(s); in memchr()
163 size_t bos = __bos(s); in memrchr()
194 return __builtin___stpcpy_chk(dest, src, __bos(dest)); in stpcpy()
199 return __builtin___strcpy_chk(dest, src, __bos(dest)); in strcpy()
204 size_t bos_dest = __bos(dest); in stpncpy()
205 size_t bos_src = __bos(src); in stpncpy()
225 size_t bos_dest = __bos(dest); in strncpy()
226 size_t bos_src = __bos(src); in strncpy()
246 return __builtin___strcat_chk(dest, src, __bos(dest)); in strcat()
251 return __builtin___strncat_chk(dest, src, n, __bos(dest)); in strncat()
[all …]
Dstdio.h391 return __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, ap); in vsnprintf()
398 return __builtin___vsprintf_chk(dest, 0, __bos(dest), format, ap); in vsprintf()
403 …#define __wrap_snprintf(dest, size, ...) __builtin___snprintf_chk(dest, size, 0, __bos(dest), __VA…
412 __bos(dest), format, __builtin_va_arg_pack()); in snprintf()
418 #define __wrap_sprintf(dest, ...) __builtin___sprintf_chk(dest, 0, __bos(dest), __VA_ARGS__)
427 __bos(dest), format, __builtin_va_arg_pack()); in sprintf()
435 size_t bos = __bos(dest); in fgets()
Dstdlib.h187 size_t bos = __bos(resolved); in realpath()
Dunistd.h337 size_t bos = __bos(buf); in readlink()
362 size_t bos = __bos(buf); in readlinkat()
/bionic/libc/include/sys/
Dselect.h65 #define FD_CLR(fd, set) __FD_CLR_chk(fd, set, __bos(set))
66 #define FD_SET(fd, set) __FD_SET_chk(fd, set, __bos(set))
67 #define FD_ISSET(fd, set) __FD_ISSET_chk(fd, set, __bos(set))
Dcdefs.h540 #define __bos(s) __builtin_object_size((s), 1) macro
542 #define __bos(s) __builtin_object_size((s), 0) macro