Home | History | Annotate | Download | only in fortify

Lines Matching refs:bos

49   size_t bos = __bos0(buf);
51 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
54 return __recvfrom_chk(fd, buf, len, bos, flags, src_addr, addr_len);
64 size_t bos = __bos0(buf);
66 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
69 return __sendto_chk(fd, buf, len, bos, flags, dest_addr, addr_len);
101 size_t bos = __bos0(buf);
103 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
107 if (__builtin_constant_p(len) && (len <= bos)) {
111 if (__builtin_constant_p(len) && (len > bos)) {
115 return __recvfrom_chk(fd, buf, len, bos, flags, src_addr, addr_len);
123 size_t bos = __bos0(buf);
125 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
129 if (__builtin_constant_p(len) && (len <= bos)) {
133 if (__builtin_constant_p(len) && (len > bos)) {
137 return __sendto_chk(fd, buf, len, bos, flags, dest_addr, addr_len);