Searched refs:out_ptr (Results 1 – 9 of 9) sorted by relevance
/crypto/bytestring/ |
A D | cbs.cc | 45 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) { in CBS_stow() argument 46 OPENSSL_free(*out_ptr); in CBS_stow() 47 *out_ptr = NULL; in CBS_stow() 53 *out_ptr = reinterpret_cast<uint8_t *>(OPENSSL_memdup(cbs->data, cbs->len)); in CBS_stow() 54 if (*out_ptr == NULL) { in CBS_stow() 61 int CBS_strdup(const CBS *cbs, char **out_ptr) { in CBS_strdup() argument 62 if (*out_ptr != NULL) { in CBS_strdup() 63 OPENSSL_free(*out_ptr); in CBS_strdup() 65 *out_ptr = OPENSSL_strndup((const char *)cbs->data, cbs->len); in CBS_strdup() 66 return (*out_ptr != NULL); in CBS_strdup()
|
/crypto/evp/ |
A D | p_x25519_asn1.cc | 119 uint8_t **out_ptr) { in x25519_get1_tls_encodedpoint() argument 126 *out_ptr = reinterpret_cast<uint8_t *>(OPENSSL_memdup(key->pub, 32)); in x25519_get1_tls_encodedpoint() 127 return *out_ptr == NULL ? 0 : 32; in x25519_get1_tls_encodedpoint()
|
A D | evp.cc | 363 size_t EVP_PKEY_get1_tls_encodedpoint(const EVP_PKEY *pkey, uint8_t **out_ptr) { in EVP_PKEY_get1_tls_encodedpoint() argument 369 return pkey->ameth->get1_tls_encodedpoint(pkey, out_ptr); in EVP_PKEY_get1_tls_encodedpoint()
|
A D | p_ec_asn1.cc | 147 uint8_t **out_ptr) { in eckey_get1_tls_encodedpoint() argument 154 return EC_KEY_key2buf(ec_key, POINT_CONVERSION_UNCOMPRESSED, out_ptr, NULL); in eckey_get1_tls_encodedpoint()
|
A D | internal.h | 80 size_t (*get1_tls_encodedpoint)(const EVP_PKEY *pkey, uint8_t **out_ptr);
|
/crypto/ |
A D | cpu_arm_linux.cc | 48 static int read_file(char **out_ptr, size_t *out_len, const char *path) { in read_file() argument 86 *out_ptr = buf; in read_file()
|
/crypto/asn1/ |
A D | a_strnid.cc | 202 void asn1_get_string_table_for_testing(const ASN1_STRING_TABLE **out_ptr, in asn1_get_string_table_for_testing() argument 204 *out_ptr = tbl_standard; in asn1_get_string_table_for_testing()
|
A D | internal.h | 205 const ASN1_STRING_TABLE **out_ptr, size_t *out_len);
|
/crypto/hrss/ |
A D | hrss.cc | 1883 static void *malloc_align32(void **out_ptr, size_t size) { in malloc_align32() argument 1886 *out_ptr = NULL; in malloc_align32() 1890 *out_ptr = ptr; in malloc_align32()
|
Completed in 20 milliseconds