/bionic/libc/include/bits/fortify/ |
D | unistd.h | 77 size_t bos = __bos(buf); in getcwd() local 79 if (!__bos_trivially_ge(bos, size)) { in getcwd() 80 return __getcwd_chk(buf, size, bos); in getcwd() 93 size_t bos = __bos0(buf); in pread() local 95 if (!__bos_trivially_ge_no_overflow(bos, count)) { in pread() 96 return __PREAD_PREFIX(chk)(fd, buf, count, offset, bos); in pread() 109 size_t bos = __bos0(buf); in pread64() local 111 if (!__bos_trivially_ge_no_overflow(bos, count)) { in pread64() 112 return __pread64_chk(fd, buf, count, offset, bos); in pread64() 125 size_t bos = __bos0(buf); in pwrite() local [all …]
|
D | strings.h | 37 size_t bos = __bos0(dst); in __bionic_bcopy() local 38 if (!__bos_trivially_ge(bos, len)) { in __bionic_bcopy() 39 __builtin___memmove_chk(dst, src, len, bos); in __bionic_bcopy() 52 size_t bos = __bos0(b); in __bionic_bzero() local 53 if (!__bos_trivially_ge(bos, len)) { in __bionic_bzero() 54 __builtin___memset_chk(b, 0, len, bos); in __bionic_bzero()
|
D | stdio.h | 94 size_t bos = __bos0(buf); in fread() local 96 if (!__bos_trivially_ge_mul(bos, size, count)) { in fread() 97 return __fread_chk(buf, size, count, stream, bos); in fread() 111 size_t bos = __bos0(buf); in fwrite() local 113 if (!__bos_trivially_ge_mul(bos, size, count)) { in fwrite() 114 return __fwrite_chk(buf, size, count, stream, bos); in fwrite() 128 size_t bos = __bos(dest); in fgets() local 130 if (!__bos_dynamic_check_impl_and(bos, >=, (size_t)size, size >= 0)) { in fgets() 131 return __fgets_chk(dest, size, stream, bos); in fgets()
|
D | socket.h | 46 size_t bos = __bos0(buf); in recvfrom() local 48 if (!__bos_trivially_ge(bos, len)) { in recvfrom() 49 return __recvfrom_chk(fd, buf, len, bos, flags, src_addr, addr_len); in recvfrom() 61 size_t bos = __bos0(buf); in sendto() local 63 if (!__bos_trivially_ge(bos, len)) { in sendto() 64 return __sendto_chk(fd, buf, len, bos, flags, dest_addr, addr_len); in sendto()
|
D | string.h | 135 size_t bos = __bos(s); in memchr() local 137 if (__bos_trivially_ge(bos, n)) { in memchr() 141 return __memchr_chk(s, c, n, bos); in memchr() 146 size_t bos = __bos(s); in __memrchr_fortify() local 148 if (__bos_trivially_ge(bos, n)) { in __memrchr_fortify() 152 return __memrchr_chk(s, c, n, bos); in __memrchr_fortify() 222 size_t bos = __bos(s); in strchr() local 224 if (bos != __BIONIC_FORTIFY_UNKNOWN_SIZE) { in strchr() 225 return __strchr_chk(s, c, bos); in strchr() 234 size_t bos = __bos(s); in strrchr() local [all …]
|
/bionic/libc/kernel/uapi/drm/ |
D | lima_drm.h | 92 __u64 bos; member
|
D | etnaviv_drm.h | 128 __u64 bos; member
|
D | msm_drm.h | 132 __u64 bos; member
|