Home
last modified time | relevance | path

Searched refs:maxline (Results 1 – 7 of 7) sorted by relevance

/third_party/openssl/crypto/ocsp/
Docsp_ht.c64 OCSP_REQ_CTX *OCSP_REQ_CTX_new(BIO *io, int maxline) in OCSP_REQ_CTX_new() argument
74 if (maxline > 0) in OCSP_REQ_CTX_new()
75 rctx->iobuflen = maxline; in OCSP_REQ_CTX_new()
180 int maxline) in OCSP_sendreq_new() argument
184 rctx = OCSP_REQ_CTX_new(io, maxline); in OCSP_sendreq_new()
/third_party/python/Lib/
Dftplib.py101 maxline = MAXLINE variable in FTP
212 line = self.file.readline(self.maxline + 1)
213 if len(line) > self.maxline:
214 raise Error("got more than %d bytes" % self.maxline)
465 line = fp.readline(self.maxline + 1)
466 if len(line) > self.maxline:
467 raise Error("got more than %d bytes" % self.maxline)
526 buf = fp.readline(self.maxline + 1)
527 if len(buf) > self.maxline:
528 raise Error("got more than %d bytes" % self.maxline)
/third_party/python/Lib/test/
Dtest_cgi.py328 maxline = 1 << 16
345 check('x' * (maxline - 1))
346 check('x' * (maxline - 1) + '\r')
347 check('x' * (maxline - 1) + '\r' + 'y' * (maxline - 1))
Dtest_ftplib.py816 'x' * self.client.maxline * 2)
819 self.client.sendcmd('SETLONGRETR %d' % (self.client.maxline * 2))
825 f = io.BytesIO(b'x' * self.client.maxline * 2)
/third_party/openssl/doc/man3/
DOCSP_sendreq_new.pod20 int maxline);
42 response header maximum line length of B<maxline>. If B<maxline> is zero a
/third_party/boost/tools/build/src/engine/
Dexecnt.cpp72 static int maxline();
221 int const length = maxline() + 9; in execnt_unit_test()
321 return check_cmd_for_too_long_lines( command->value, maxline(), in exec_check()
587 static int maxline() in maxline() function
/third_party/openssl/include/openssl/
Docsp.h153 int maxline);
156 OCSP_REQ_CTX *OCSP_REQ_CTX_new(BIO *io, int maxline);