Searched defs:close_flag (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dsocket.c171 BIO *BIO_new_socket(int fd, int close_flag) { argument
178 BIO_set_fd(ret, fd, close_flag);
H A Dfd.c120 BIO *BIO_new_fd(int fd, int close_flag) { argument
125 BIO_set_fd(ret, fd, close_flag);
260 int BIO_set_fd(BIO *bio, int fd, int close_flag) { argument
261 return BIO_int_ctrl(bio, BIO_C_SET_FD, close_flag, fd);
H A Dfile.c152 BIO *BIO_new_fp(FILE *stream, int close_flag) { argument
159 BIO_set_fp(ret, stream, close_flag);
327 int BIO_set_fp(BIO *bio, FILE *file, int close_flag) { argument
328 return BIO_ctrl(bio, BIO_C_SET_FILE_PTR, close_flag, (char *) file);
H A Dbio.c362 int BIO_set_close(BIO *bio, int close_flag) { argument
363 return BIO_ctrl(bio, BIO_CTRL_SET_CLOSE, close_flag, NULL);
/external/openssl/crypto/bio/
H A Dbss_fd.c111 BIO *BIO_new_fd(int fd,int close_flag) argument
116 BIO_set_fd(ret,fd,close_flag);
H A Dbss_sock.c101 BIO *BIO_new_socket(int fd, int close_flag) argument
107 BIO_set_fd(ret,fd,close_flag);
H A Dbss_file.c188 BIO *BIO_new_fp(FILE *stream, int close_flag) argument
196 BIO_set_fp(ret,stream,close_flag);
H A Dbss_dgram.c209 BIO *BIO_new_dgram(int fd, int close_flag) argument
215 BIO_set_fd(ret,fd,close_flag);
872 BIO *BIO_new_dgram_sctp(int fd, int close_flag) argument
891 BIO_set_fd(bio,fd,close_flag);

Completed in 65 milliseconds