Searched refs:close_flag (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/crypto/bio/ |
D | fd.c | 134 BIO *BIO_new_fd(int fd, int close_flag) { in BIO_new_fd() argument 139 BIO_set_fd(ret, fd, close_flag); in BIO_new_fd() 272 int BIO_set_fd(BIO *bio, int fd, int close_flag) { in BIO_set_fd() argument 273 return BIO_int_ctrl(bio, BIO_C_SET_FD, close_flag, fd); in BIO_set_fd()
|
D | file.c | 119 BIO *BIO_new_fp(FILE *stream, int close_flag) { in BIO_new_fp() argument 126 BIO_set_fp(ret, stream, close_flag); in BIO_new_fp() 294 int BIO_set_fp(BIO *bio, FILE *file, int close_flag) { in BIO_set_fp() argument 295 return BIO_ctrl(bio, BIO_C_SET_FILE_PTR, close_flag, (char *) file); in BIO_set_fp()
|
D | socket.c | 195 BIO *BIO_new_socket(int fd, int close_flag) { in BIO_new_socket() argument 202 BIO_set_fd(ret, fd, close_flag); in BIO_new_socket()
|
D | bio.c | 333 int BIO_set_close(BIO *bio, int close_flag) { in BIO_set_close() argument 334 return BIO_ctrl(bio, BIO_CTRL_SET_CLOSE, close_flag, NULL); in BIO_set_close()
|
/external/boringssl/src/include/openssl/ |
D | bio.h | 264 OPENSSL_EXPORT int BIO_set_close(BIO *bio, int close_flag); 433 OPENSSL_EXPORT BIO *BIO_new_fd(int fd, int close_flag); 441 OPENSSL_EXPORT int BIO_set_fd(BIO *bio, int fd, int close_flag); 474 OPENSSL_EXPORT BIO *BIO_new_fp(FILE *stream, int close_flag); 483 OPENSSL_EXPORT int BIO_set_fp(BIO *bio, FILE *file, int close_flag); 523 OPENSSL_EXPORT BIO *BIO_new_socket(int fd, int close_flag);
|
/external/libevent/ |
D | bufferevent_openssl.c | 254 BIO_new_bufferevent(struct bufferevent *bufferevent, int close_flag) in BIO_new_bufferevent() argument 263 BIO_set_shutdown(result, close_flag ? 1 : 0); in BIO_new_bufferevent() 1409 int close_flag = 0; /* options & BEV_OPT_CLOSE_ON_FREE; */ in bufferevent_openssl_filter_new() local 1413 if (!(bio = BIO_new_bufferevent(underlying, close_flag))) in bufferevent_openssl_filter_new()
|
/external/libevent/test/ |
D | regress_ssl.c | 651 BIO_new_rwcount(int close_flag) in BIO_new_rwcount() argument 658 BIO_set_shutdown(result, !!close_flag); in BIO_new_rwcount()
|