Home
last modified time | relevance | path

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

/third_party/openssl/doc/man3/
DBIO_ctrl.pod6 BIO_seek, BIO_tell, BIO_flush, BIO_eof, BIO_set_close, BIO_get_close,
23 int BIO_seek(BIO *b, int ofs);
51 BIO_seek() resets a file related BIO's (that is file descriptor and
80 BIO_seek() and BIO_tell() both return the current file position on success
81 and -1 for failure, except file BIOs which for BIO_seek() always return 0
114 BIO_seek(), but this may still succeed if the chain ends in a FILE
125 the case of BIO_seek() on a file BIO for a successful operation.
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 the same value as the underlying fseek() function:
145 BIO_reset() and BIO_seek() are implemented using fseek() on the underlying
152 L<BIO_seek(3)>, L<BIO_tell(3)>,
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)>,
/third_party/openssl/util/
Dprivate.num134 BIO_seek define
/third_party/openssl/include/openssl/
Dbio.h420 # define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL) macro