Home
last modified time | relevance | path

Searched refs:BUF_strlcpy (Results 1 – 7 of 7) sorted by relevance

/external/boringssl/src/crypto/bio/
Dfile.c208 BUF_strlcpy(p, "a+", sizeof(p)); in file_ctrl()
210 BUF_strlcpy(p, "a", sizeof(p)); in file_ctrl()
213 BUF_strlcpy(p, "r+", sizeof(p)); in file_ctrl()
215 BUF_strlcpy(p, "w", sizeof(p)); in file_ctrl()
217 BUF_strlcpy(p, "r", sizeof(p)); in file_ctrl()
/external/boringssl/src/crypto/asn1/
Da_time.c146 BUF_strlcpy(str, "19", newlen); in ASN1_TIME_to_generalizedtime()
148 BUF_strlcpy(str, "20", newlen); in ASN1_TIME_to_generalizedtime()
/external/boringssl/src/crypto/buf/
Dbuf.c203 size_t BUF_strlcpy(char *dst, const char *src, size_t dst_size) { in BUF_strlcpy() function
223 return l + BUF_strlcpy(dst, src, dst_size); in BUF_strlcat()
/external/boringssl/src/include/openssl/
Dbuf.h112 OPENSSL_EXPORT size_t BUF_strlcpy(char *dst, const char *src, size_t dst_size);
/external/boringssl/src/crypto/x509v3/
Dv3_info.c140 BUF_strlcpy(ntmp, objtmp, nlen);
/external/boringssl/src/crypto/obj/
Dobj.c423 size_t ret = BUF_strlcpy(dst, src, dst_size < 0 ? 0 : (size_t)dst_size); in strlcpy_int()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc802 BUF_strlcpy(out_identity, config->psk_identity.c_str(), in PskClientCallback()