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:write_eof
(Results
1 - 11
of
11
) sorted by relevance
/third_party/python/Lib/asyncio/
H
A
D
transports.py
125
def
write_eof
(self):
member in WriteTransport
135
"""Return True if this transport supports
write_eof
(), False if not."""
H
A
D
proactor_events.py
343
raise RuntimeError('
write_eof
() already called')
419
def
write_eof
(self):
member in _ProactorBaseWritePipeTransport
599
def
write_eof
(self):
member in _ProactorDuplexPipeTransport
621
def
write_eof
(self):
member in _ProactorSocketTransport
H
A
D
streams.py
304
This exposes write(), writelines(), [can_]
write_eof
(),
337
def
write_eof
(self):
member in StreamWriter
338
return self._transport.
write_eof
()
H
A
D
unix_events.py
613
self._closing = False # Set when close() or
write_eof
() called.
744
def
write_eof
(self):
member in _UnixWritePipeTransport
764
#
write_eof
is all what we needed to close the write pipe
765
self.
write_eof
()
H
A
D
sslproto.py
228
def
write_eof
(self):
member in _SSLProtocolTransport
236
"""Return True if this transport supports
write_eof
(), False if not."""
H
A
D
selector_events.py
1042
raise RuntimeError('Cannot call write() after
write_eof
()')
1106
def
write_eof
(self):
member in _SelectorSocketTransport
/third_party/python/Lib/test/test_asyncio/
H
A
D
test_transports.py
52
self.assertRaises(NotImplementedError, transport.
write_eof
)
H
A
D
test_proactor_events.py
339
tr.
write_eof
()
341
tr.
write_eof
()
350
tr.
write_eof
()
363
tr.
write_eof
()
374
tr.
write_eof
()
389
tr.
write_eof
()
H
A
D
test_unix_events.py
1077
tr.
write_eof
= mock.Mock()
1079
tr.
write_eof
.assert_called_with()
1086
tr.
write_eof
= mock.Mock()
1089
self.assertFalse(tr.
write_eof
.called)
1093
tr.
write_eof
()
1102
tr.
write_eof
()
H
A
D
test_selector_events.py
856
tr.
write_eof
()
858
tr.
write_eof
()
866
tr.
write_eof
()
880
tr.
write_eof
()
/third_party/python/Lib/test/
H
A
D
test_ssl.py
1924
bio.
write_eof
()
2309
incoming.
write_eof
()
2377
incoming.
write_eof
()
Completed in 19 milliseconds