Searched refs:g_async_bio_method (Results 1 – 1 of 1) sorted by relevance
128 static BIO_METHOD *g_async_bio_method = NULL; variable132 if (g_async_bio_method == NULL) { in AsyncMethod()133 g_async_bio_method = BIO_meth_new(BIO_TYPE_FILTER, "async bio"); in AsyncMethod()134 if ( g_async_bio_method == NULL in AsyncMethod()135 || !BIO_meth_set_write(g_async_bio_method, AsyncWrite) in AsyncMethod()136 || !BIO_meth_set_read(g_async_bio_method, AsyncRead) in AsyncMethod()137 || !BIO_meth_set_ctrl(g_async_bio_method, AsyncCtrl) in AsyncMethod()138 || !BIO_meth_set_create(g_async_bio_method, AsyncNew) in AsyncMethod()139 || !BIO_meth_set_destroy(g_async_bio_method, AsyncFree) in AsyncMethod()140 || !BIO_meth_set_callback_ctrl(g_async_bio_method, AsyncCallbackCtrl)) in AsyncMethod()[all …]