Searched refs:__bos0 (Results 1 – 6 of 6) sorted by relevance
/bionic/libc/include/ |
D | strings.h | 50 #define bcopy(b1, b2, len) (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2))) 51 #define bzero(b, len) (void)(__builtin___memset_chk((b), '\0', (len), __bos0(b)))
|
D | unistd.h | 322 __error_if_overflows_objectsize(count, __bos0(buf)); 327 size_t bos = __bos0(buf); in pread() 343 __error_if_overflows_objectsize(count, __bos0(buf)); 348 size_t bos = __bos0(buf); in pread64() 368 __error_if_overflows_objectsize(count, __bos0(buf)); 373 size_t bos = __bos0(buf); in pwrite() 391 __error_if_overflows_objectsize(count, __bos0(buf)); 396 size_t bos = __bos0(buf); in pwrite64() 414 __error_if_overflows_objectsize(count, __bos0(buf)); 419 size_t bos = __bos0(buf); in read() [all …]
|
D | string.h | 173 return __builtin___memcpy_chk(dst, src, copy_amount, __bos0(dst)); in memcpy() 179 return __builtin___memmove_chk(dst, src, len, __bos0(dst)); in memmove() 212 return __builtin___memset_chk(s, c, n, __bos0(s)); in memset() 220 __enable_if(__bos0(dst) != __BIONIC_FORTIFY_UNKNOWN_SIZE && \ 221 __bos0(dst) < (n), "selected when the buffer is too small") \ 345 size_t bos = __bos0(s); in strlen() 396 return __builtin___memset_chk(s, c, n, __bos0(s)); in memset()
|
D | stdio.h | 346 size_t bos = __bos0(buf); in fread() 372 size_t bos = __bos0(buf); in fwrite() 440 size_t bos = __bos0(buf); in fread() 464 size_t bos = __bos0(buf); in fwrite()
|
/bionic/libc/include/sys/ |
D | socket.h | 351 size_t bos = __bos0(buf); in recvfrom() 367 __enable_if(__bos0(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && 368 __bos0(buf) < len, "selected when the buffer is too small") 375 size_t bos = __bos0(buf); in sendto() 388 __enable_if(__bos0(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && 389 __bos0(buf) < len, "selected when the buffer is too small") 405 size_t bos = __bos0(buf); in recvfrom() 427 size_t bos = __bos0(buf); in sendto()
|
D | cdefs.h | 274 # define __bos0(s) __bosn((s), 0) macro
|