Searched refs:allocbytes (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/crypto/openssl/ssl/ |
| H A D | packet.c | 16 int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_allocate_bytes() argument 18 if (!WPACKET_reserve_bytes(pkt, len, allocbytes)) in WPACKET_allocate_bytes() 27 unsigned char **allocbytes, size_t lenbytes) in WPACKET_sub_allocate_bytes__() argument 30 || !WPACKET_allocate_bytes(pkt, len, allocbytes) in WPACKET_sub_allocate_bytes__() 40 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_reserve_bytes() argument 65 if (allocbytes != NULL) in WPACKET_reserve_bytes() 66 *allocbytes = WPACKET_get_curr(pkt); in WPACKET_reserve_bytes() 72 unsigned char **allocbytes, size_t lenbytes) in WPACKET_sub_reserve_bytes__() argument 74 if (!WPACKET_reserve_bytes(pkt, lenbytes + len, allocbytes)) in WPACKET_sub_reserve_bytes__() 77 *allocbytes += lenbytes; in WPACKET_sub_reserve_bytes__()
|
| H A D | packet_locl.h | 742 unsigned char **allocbytes); 751 unsigned char **allocbytes, size_t lenbytes); 784 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes); 790 unsigned char **allocbytes, size_t lenbytes);
|