Home
last modified time | relevance | path

Searched refs:BIO_tell (Results 1 – 13 of 13) sorted by relevance

/freebsd/crypto/openssl/crypto/pem/
H A Dpem_pkey.c43 if ((pos = BIO_tell(bp)) < 0) in pem_read_bio_key_decoder()
61 if (BIO_eof(bp) != 0 || (newpos = BIO_tell(bp)) < 0 || newpos <= pos) { in pem_read_bio_key_decoder()
225 if ((pos = BIO_tell(bp)) < 0) { in pem_read_bio_key()
230 pos = BIO_tell(bp); in pem_read_bio_key()
/freebsd/crypto/openssl/doc/man3/
H A DBIO_f_readbuffer.pod6 - read only buffering BIO that supports BIO_tell() and BIO_seek()
18 This BIO filter can be inserted on top of BIO's that do not support BIO_tell()
H A DBIO_ctrl.pod6 BIO_seek, BIO_tell, BIO_flush, BIO_eof, BIO_set_close, BIO_get_close,
25 int BIO_tell(BIO *b);
58 BIO_tell() returns the current file position of a file related BIO.
89 BIO_seek() and BIO_tell() both return the current file position on success
H A DBIO_s_file.pod65 BIO_tell() returns the value of the position pointer.
95 BIO_tell() returns the current file position or negative values for failure.
151 L<BIO_seek(3)>, L<BIO_tell(3)>,
H A DBIO_s_fd.pod35 BIO_tell() returns the current file position such as by calling
83 L<BIO_seek(3)>, L<BIO_tell(3)>,
/freebsd/crypto/openssl/test/
H A Dbio_readbuffer_test.c51 if (!TEST_int_eq(BIO_tell(in_bio), 0)) in test_readbuffer_file_bio()
/freebsd/crypto/openssl/crypto/encode_decode/
H A Ddecoder_lib.c68 if (BIO_tell(in) < 0) { in OSSL_DECODER_from_bio()
815 if ((loc = BIO_tell(bio)) < 0) { in decoder_process()
943 if (BIO_tell(bio) != loc) in decoder_process()
/freebsd/crypto/openssl/util/
H A Dother.syms235 BIO_tell define
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h496 # define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL) macro
H A Dbio.h.in473 # define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL) macro
/freebsd/crypto/openssl/apps/lib/
H A Ds_cb.c1546 if (BIO_tell(bio_keylog) == 0) { in set_keylog_file()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile941 MLINKS+= BIO_ctrl.3 BIO_tell.3
/freebsd/crypto/openssl/
H A DCHANGES.md1188 * Add filter BIO BIO_f_readbuffer() that allows BIO_tell() and BIO_seek() to