Lines Matching full:written
5 * This package is an SSL implementation written
7 * The implementation was written so as to conform with Netscapes SSL.
33 * "This product includes cryptographic software written by
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
83 int bytes_per_line, dumped, printed, trailing, written; in BIO_dump_indent() local
135 if ((written = BIO_printf(bio, "%*s%04x - ", indent, "", in BIO_dump_indent()
138 if (printed > INT_MAX - written) in BIO_dump_indent()
140 printed += written; in BIO_dump_indent()
158 if ((written = BIO_printf(bio, "%02x%c", u8, sep)) < 0) in BIO_dump_indent()
160 if (printed > INT_MAX - written) in BIO_dump_indent()
162 printed += written; in BIO_dump_indent()
178 if ((written = BIO_printf(bio, "%*s%.*s\n", 3 * missing + 2, "", in BIO_dump_indent()
181 if (printed > INT_MAX - written) in BIO_dump_indent()
183 printed += written; in BIO_dump_indent()
189 if ((written = BIO_printf(bio, "%*s%04x - <SPACES/NULS>\n", in BIO_dump_indent()
192 if (printed > INT_MAX - written) in BIO_dump_indent()
194 printed += written; in BIO_dump_indent()