Home | History | Annotate | Download | only in bytestring

Lines Matching full:out_ptr

54 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) {
55 OPENSSL_free(*out_ptr);
56 *out_ptr = NULL;
62 *out_ptr = BUF_memdup(cbs->data, cbs->len);
63 if (*out_ptr == NULL) {
70 int CBS_strdup(const CBS *cbs, char **out_ptr) {
71 if (*out_ptr != NULL) {
72 OPENSSL_free(*out_ptr);
74 *out_ptr = BUF_strndup((const char*)cbs->data, cbs->len);
75 return (*out_ptr != NULL);