Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/netty-tcnative/src/c/
H A Dssl.c484 static BIO_METHOD bio_java_bytebuffer_methods = { variable
497 static BIO_METHOD* bio_java_bytebuffer_methods = NULL; variable
500 bio_java_bytebuffer_methods = BIO_meth_new(BIO_TYPE_MEM, "Java ByteBuffer"); in init_bio_methods()
501 BIO_meth_set_write(bio_java_bytebuffer_methods, &bio_java_bytebuffer_write); in init_bio_methods()
502 BIO_meth_set_read(bio_java_bytebuffer_methods, &bio_java_bytebuffer_read); in init_bio_methods()
503 BIO_meth_set_puts(bio_java_bytebuffer_methods, &bio_java_bytebuffer_puts); in init_bio_methods()
504 BIO_meth_set_gets(bio_java_bytebuffer_methods, &bio_java_bytebuffer_gets); in init_bio_methods()
505 BIO_meth_set_ctrl(bio_java_bytebuffer_methods, &bio_java_bytebuffer_ctrl); in init_bio_methods()
506 BIO_meth_set_create(bio_java_bytebuffer_methods, &bio_java_bytebuffer_create); in init_bio_methods()
507 BIO_meth_set_destroy(bio_java_bytebuffer_methods, &bio_java_bytebuffer_destroy); in init_bio_methods()
[all …]