Searched refs:allocbytes (Results 1 – 2 of 2) sorted by relevance
/freebsd/crypto/openssl/crypto/ |
H A D | packet.c | 19 int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_allocate_bytes() argument 21 if (!WPACKET_reserve_bytes(pkt, len, allocbytes)) in WPACKET_allocate_bytes() 30 unsigned char **allocbytes, size_t lenbytes) in WPACKET_sub_allocate_bytes__() argument 33 || !WPACKET_allocate_bytes(pkt, len, allocbytes) in WPACKET_sub_allocate_bytes__() 46 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) in WPACKET_reserve_bytes() argument 71 if (allocbytes != NULL) { in WPACKET_reserve_bytes() 72 *allocbytes = WPACKET_get_curr(pkt); in WPACKET_reserve_bytes() 73 if (pkt->endfirst && *allocbytes != NULL) in WPACKET_reserve_bytes() 74 *allocbytes -= len; in WPACKET_reserve_bytes() 81 unsigned char **allocbytes, size_t lenbytes) in WPACKET_sub_reserve_bytes__() argument [all …]
|
/freebsd/crypto/openssl/include/internal/ |
H A D | packet.h | 802 unsigned char **allocbytes); 811 unsigned char **allocbytes, size_t lenbytes); 844 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes); 850 unsigned char **allocbytes, size_t lenbytes);
|