Home
last modified time | relevance | path

Searched refs:BIO_seek (Results 1 – 15 of 15) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DBIO_ctrl.pod6 BIO_seek, BIO_tell, BIO_flush, BIO_eof, BIO_set_close, BIO_get_close,
24 int BIO_seek(BIO *b, int ofs);
55 BIO_seek() resets a file related BIO's (that is file descriptor and
89 BIO_seek() and BIO_tell() both return the current file position on success
90 and -1 for failure, except file BIOs which for BIO_seek() always return 0
131 BIO_seek(), but this may still succeed if the chain ends in a FILE
142 the case of BIO_seek() on a file BIO for a successful operation.
H A DBIO_f_readbuffer.pod6 - read only buffering BIO that supports BIO_tell() and BIO_seek()
19 or BIO_seek() (e.g. A file BIO that uses stdin).
37 BIO in the chain. BIO_seek() uses the internal buffer, so that it can only seek
H A DBIO_s_file.pod40 BIO_seek() sets the file pointer to position B<ofs> from start of file
62 BIO_seek() is a macro that sets the position pointer to B<offset> bytes
93 BIO_seek() returns 0 for success or negative values for failure.
144 BIO_reset() and BIO_seek() are implemented using fseek() on the underlying
151 L<BIO_seek(3)>, L<BIO_tell(3)>,
H A DBIO_s_fd.pod32 BIO_seek() sets the file pointer to position B<ofs> from start of file
83 L<BIO_seek(3)>, L<BIO_tell(3)>,
/freebsd/crypto/openssl/test/
H A Dbio_readbuffer_test.c77 if (!TEST_int_eq(BIO_seek(in_bio, 0), 1)) in test_readbuffer_file_bio()
H A Devp_extra_test2.c624 if (!TEST_int_ge(BIO_seek(key_bio, 0), 0)) in test_d2i_PrivateKey_ex()
654 if (!TEST_int_ge(BIO_seek(key_bio, 0), 0)) in test_PEM_read_bio_negative()
H A Denginetest.c403 if (!TEST_int_ge(BIO_seek(b, 0), 0) in test_x509_dup_w_engine()
/freebsd/contrib/unbound/smallapp/
H A Dunbound-anchor.c1406 (void)BIO_seek(zone, 0); in xml_is_zone_name()
1478 (void)BIO_seek(a, 0); in xml_append_bio()
1617 (void)BIO_seek(xml, 0); in xml_parse()
1636 (void)BIO_seek(data.ds, 0); in xml_parse()
1791 (void)BIO_seek(p7s, 0); in verify_p7sig()
1792 (void)BIO_seek(data, 0); in verify_p7sig()
1905 (void)BIO_seek(ds, 0); in write_root_anchor()
/freebsd/crypto/openssl/crypto/pem/
H A Dpem_pkey.c244 && (BIO_seek(bp, pos) < 0 in pem_read_bio_key()
/freebsd/crypto/openssl/crypto/encode_decode/
H A Ddecoder_lib.c942 (void)BIO_seek(bio, loc); in decoder_process()
/freebsd/crypto/openssl/util/
H A Dother.syms199 BIO_seek define
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h495 # define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL) macro
H A Dbio.h.in472 # define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL) macro
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile893 MLINKS+= BIO_ctrl.3 BIO_seek.3
/freebsd/crypto/openssl/
H A DCHANGES.md1188 * Add filter BIO BIO_f_readbuffer() that allows BIO_tell() and BIO_seek() to