Home
last modified time | relevance | path

Searched refs:nbio (Results 1 - 5 of 5) sorted by relevance

/third_party/node/src/crypto/
H A Dcrypto_bio.cc83 NodeBIO* nbio = FromBIO(bio); in Read() local
84 int bytes = nbio->Read(out, len); in Read()
87 bytes = nbio->eof_return(); in Read()
145 NodeBIO* nbio = FromBIO(bio); in Gets() local
147 if (nbio->Length() == 0) in Gets()
150 int i = nbio->IndexOf('\n', size); in Gets()
153 if (i < size && i >= 0 && static_cast<size_t>(i) < nbio->Length()) in Gets()
161 nbio->Read(out, i); in Gets()
171 NodeBIO* nbio; in Ctrl() local
174 nbio in Ctrl()
[all...]
/third_party/mbedtls/programs/ssl/
H A Dssl_client2.c391 " nbio=%%d default: 0 (blocking I/O)\n" \
394 " options: 1 (level-triggered, implies nbio=1),\n" \
470 int nbio; /* should I/O be blocking? */ member
918 opt.nbio = DFL_NBIO; in main()
1078 } else if (strcmp(p, "nbio") == 0) { in main()
1079 opt.nbio = atoi(q); in main()
1080 if (opt.nbio < 0 || opt.nbio > 2) { in main()
1454 if (opt.event == 1 && opt.nbio != 1) { in main()
1455 mbedtls_printf("Warning: event-driven IO mandates nbio in main()
[all...]
H A Dssl_test_common_source.c204 if (opt.nbio == 2) { in recv_cb()
255 if (opt.nbio == 2) { in send_cb()
H A Dssl_server2.c517 " nbio=%%d default: 0 (blocking I/O)\n" \
520 " options: 1 (level-triggered, implies nbio=1),\n" \
610 int nbio; /* should I/O be blocking? */ member
1687 opt.nbio = DFL_NBIO; in main()
1859 } else if (strcmp(p, "nbio") == 0) { in main()
1860 opt.nbio = atoi(q); in main()
1861 if (opt.nbio < 0 || opt.nbio > 2) { in main()
2313 if (opt.event == 1 && opt.nbio != 1) { in main()
2314 mbedtls_printf("Warning: event-driven IO mandates nbio in main()
[all...]
/third_party/libcoap/src/
H A Dcoap_openssl.c2818 BIO *nbio = NULL; in coap_dtls_new_server_session() local
2828 nbio = BIO_new(dtls->meth); in coap_dtls_new_server_session()
2829 if (!nbio) in coap_dtls_new_server_session()
2831 SSL_set_bio(nssl, nbio, nbio); in coap_dtls_new_server_session()

Completed in 12 milliseconds