Lines Matching refs:descriptor
5 BIO_s_fd, BIO_set_fd, BIO_get_fd, BIO_new_fd - file descriptor BIO
20 BIO_s_fd() returns the file descriptor BIO method. This is a wrapper
21 round the platforms file descriptor routines such as read() and write().
23 BIO_read_ex() and BIO_write_ex() read or write the underlying descriptor.
27 file descriptor when the BIO is freed.
38 BIO_set_fd() sets the file descriptor of BIO B<b> to B<fd> and the close
41 BIO_get_fd() places the file descriptor of BIO B<b> in B<c> if it is not NULL.
42 It also returns the file descriptor.
44 BIO_new_fd() returns a file descriptor BIO using B<fd> and B<close_flag>.
49 platforms read() and write() calls on the descriptor. If the underlying
50 file descriptor is in a non blocking mode then the BIO will behave in the
54 File descriptor BIOs should not be used for socket I/O. Use socket BIOs
61 BIO_s_fd() returns the file descriptor BIO method.
65 BIO_get_fd() returns the file descriptor or -1 if the BIO has not
73 This is a file descriptor BIO version of "Hello World":