Home
last modified time | relevance | path

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

/onnv-gate/usr/src/common/openssl/doc/crypto/
H A DBIO_s_socket.pod13 long BIO_set_fd(BIO *b, int fd, long close_flag);
16 BIO *BIO_new_socket(int sock, int close_flag);
30 flag to B<close_flag>.
35 BIO_new_socket() returns a socket BIO using B<sock> and B<close_flag>.
H A DBIO_s_fd.pod16 BIO *BIO_new_fd(int fd, int close_flag);
44 BIO_new_fd() returns a file descriptor BIO using B<fd> and B<close_flag>.
/onnv-gate/usr/src/common/openssl/crypto/bio/
H A Dbss_fd.c103 BIO *BIO_new_fd(int fd,int close_flag) in BIO_new_fd() argument
108 BIO_set_fd(ret,fd,close_flag); in BIO_new_fd()
H A Dbss_sock.c98 BIO *BIO_new_socket(int fd, int close_flag) in BIO_new_socket() argument
104 BIO_set_fd(ret,fd,close_flag); in BIO_new_socket()
H A Dbio.h555 BIO *BIO_new_fp_internal(FILE *stream, int close_flag);
562 BIO *BIO_new_fp(FILE *stream, int close_flag);
662 BIO *BIO_new_socket(int sock, int close_flag);
663 BIO *BIO_new_dgram(int fd, int close_flag);
664 BIO *BIO_new_fd(int fd, int close_flag);
H A Dbss_dgram.c114 BIO *BIO_new_dgram(int fd, int close_flag) in BIO_new_dgram() argument
120 BIO_set_fd(ret,fd,close_flag); in BIO_new_dgram()
H A Dbss_file.c138 BIO *BIO_new_fp(FILE *stream, int close_flag) in BIO_new_fp() argument
146 BIO_set_fp(ret,stream,close_flag); in BIO_new_fp()