Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_MAXLINE
(Results
1 - 8
of
8
) sorted by relevance
/third_party/python/Lib/http/
H
A
D
client.py
111
_MAXLINE
= 65536
variable
209
Length of line is limited by
_MAXLINE
, and number of
214
line = fp.readline(
_MAXLINE
+ 1)
215
if len(line) >
_MAXLINE
:
279
line = str(self.fp.readline(
_MAXLINE
+ 1), "iso-8859-1")
280
if len(line) >
_MAXLINE
:
526
line = self.fp.readline(
_MAXLINE
+ 1)
527
if len(line) >
_MAXLINE
:
544
line = self.fp.readline(
_MAXLINE
+ 1)
545
if len(line) >
_MAXLINE
[all...]
/third_party/python/Lib/
H
A
D
poplib.py
48
_MAXLINE
= 2048
variable
133
line = self.file.readline(
_MAXLINE
+ 1)
134
if len(line) >
_MAXLINE
:
H
A
D
nntplib.py
95
_MAXLINE
= 2048
variable
464
line = self.file.readline(
_MAXLINE
+1)
465
if len(line) >
_MAXLINE
:
H
A
D
smtplib.py
66
_MAXLINE
= 8192 # more than 8 times larger than RFC 821, 4.5.3
variable
398
line = self.file.readline(
_MAXLINE
+ 1)
408
if len(line) >
_MAXLINE
:
H
A
D
imaplib.py
53
_MAXLINE
= 1000000
variable
323
line = self.file.readline(
_MAXLINE
+ 1)
324
if len(line) >
_MAXLINE
:
325
raise self.error("got more than %d bytes" %
_MAXLINE
)
/third_party/python/Lib/test/
H
A
D
test_poplib.py
312
'echo +%s' % ((poplib.
_MAXLINE
+ 10) * 'a'))
H
A
D
test_imaplib.py
446
@mock.patch('imaplib.
_MAXLINE
', 10)
908
self.wfile.write(b'* OK ' + imaplib.
_MAXLINE
* b'x' + b'\r\n')
H
A
D
test_smtplib.py
776
respdata = b'250 OK' + (b'.' * smtplib.
_MAXLINE
* 2) + b'\n'
Completed in 12 milliseconds