Searched refs:allocbytes (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/crypto/openssl/ssl/
H A Dpacket.c16 int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) argument
18 if (!WPACKET_reserve_bytes(pkt, len, allocbytes))
27 unsigned char **allocbytes, size_t lenbytes)
30 || !WPACKET_allocate_bytes(pkt, len, allocbytes)
40 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes) argument
65 if (allocbytes != NULL)
66 *allocbytes = WPACKET_get_curr(pkt);
72 unsigned char **allocbytes, size_t lenbytes)
74 if (!WPACKET_reserve_bytes(pkt, lenbytes + len, allocbytes))
77 *allocbytes
26 WPACKET_sub_allocate_bytes__(WPACKET *pkt, size_t len, unsigned char **allocbytes, size_t lenbytes) argument
71 WPACKET_sub_reserve_bytes__(WPACKET *pkt, size_t len, unsigned char **allocbytes, size_t lenbytes) argument
[all...]
H A Dpacket_local.h736 * to the allocated bytes is stored in |*allocbytes|. |allocbytes| may be NULL.
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);

Completed in 95 milliseconds