OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:buf_strdup
(Results
1 - 25
of
26
) sorted by null
1
2
/external/boringssl/src/include/openssl/
buf.h
96
/*
BUF_strdup
returns an allocated, duplicate of |str|. */
97
OPENSSL_EXPORT char *
BUF_strdup
(const char *str);
/external/boringssl/src/crypto/buf/
buf.c
156
char *
BUF_strdup
(const char *buf) {
/external/boringssl/src/crypto/x509v3/
v3_enum.c
97
return
BUF_strdup
(enam->lname);
v3_utl.c
96
if (name && !(tname =
BUF_strdup
(name)))
98
if (value && !(tvalue =
BUF_strdup
(value)))
294
linebuf =
BUF_strdup
(line);
616
emtmp =
BUF_strdup
((char *)email->data);
1076
iptmp =
BUF_strdup
(ipasc);
[
all
...]
v3_purp.c
240
name_dup =
BUF_strdup
(name);
241
sname_dup =
BUF_strdup
(sname);
/external/boringssl/src/crypto/bio/
connect.c
430
data->param_hostname =
BUF_strdup
(ptr);
436
data->param_port =
BUF_strdup
(ptr);
/external/boringssl/src/crypto/x509/
x509_vpm.c
340
tmp =
BUF_strdup
(src);
362
param->name =
BUF_strdup
(name);
x509_trs.c
203
name_dup =
BUF_strdup
(name);
/external/boringssl/src/ssl/
ssl_lib.c
436
ssl->psk_identity_hint =
BUF_strdup
(ctx->psk_identity_hint);
[
all
...]
ssl_session.c
204
new_session->psk_identity =
BUF_strdup
(session->psk_identity);
254
new_session->tlsext_hostname =
BUF_strdup
(session->tlsext_hostname);
[
all
...]
tls13_server.c
398
hs->new_session->tlsext_hostname =
BUF_strdup
(hs->hostname);
handshake_client.c
[
all
...]
handshake_server.c
997
hs->new_session->tlsext_hostname =
BUF_strdup
(hs->hostname);
[
all
...]
t1_lib.c
620
hs->new_session->tlsext_hostname =
BUF_strdup
(ssl->tlsext_hostname);
[
all
...]
/prebuilts/abi-dumps/vndk/current/arm/source-based/
libcrypto.so.lsdump.gz
libssl.so.lsdump.gz
/prebuilts/abi-dumps/vndk/current/arm64/source-based/
libcrypto.so.lsdump.gz
libssl.so.lsdump.gz
/prebuilts/abi-dumps/vndk/current/mips/source-based/
libcrypto.so.lsdump.gz
libssl.so.lsdump.gz
/prebuilts/abi-dumps/vndk/current/mips64/source-based/
libcrypto.so.lsdump.gz
libssl.so.lsdump.gz
/prebuilts/abi-dumps/vndk/current/x86/source-based/
libcrypto.so.lsdump.gz
libssl.so.lsdump.gz
/prebuilts/abi-dumps/vndk/current/x86_64/source-based/
libcrypto.so.lsdump.gz
Completed in 185 milliseconds
1
2