HomeSort by relevance Sort by last modified time
    Searched refs:BUF_strlcpy (Results 1 - 7 of 7) sorted by null

  /external/boringssl/src/include/openssl/
buf.h 111 /* BUF_strlcpy acts like strlcpy(3). */
112 OPENSSL_EXPORT size_t BUF_strlcpy(char *dst, const char *src, size_t dst_size);
  /external/boringssl/src/crypto/bio/
file.c 208 BUF_strlcpy(p, "a+", sizeof(p));
210 BUF_strlcpy(p, "a", sizeof(p));
213 BUF_strlcpy(p, "r+", sizeof(p));
215 BUF_strlcpy(p, "w", sizeof(p));
217 BUF_strlcpy(p, "r", sizeof(p));
  /external/boringssl/src/crypto/asn1/
a_time.c 146 BUF_strlcpy(str, "19", newlen);
148 BUF_strlcpy(str, "20", newlen);
  /external/boringssl/src/crypto/buf/
buf.c 203 size_t BUF_strlcpy(char *dst, const char *src, size_t dst_size) {
223 return l + BUF_strlcpy(dst, src, dst_size);
  /external/boringssl/src/crypto/x509v3/
v3_info.c 140 BUF_strlcpy(ntmp, objtmp, nlen);
  /external/boringssl/src/crypto/obj/
obj.c 423 size_t ret = BUF_strlcpy(dst, src, dst_size < 0 ? 0 : (size_t)dst_size);
  /external/boringssl/src/ssl/test/
bssl_shim.cc 802 BUF_strlcpy(out_identity, config->psk_identity.c_str(),
    [all...]

Completed in 321 milliseconds