OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:closeWithError
(Results
1 - 2
of
2
) sorted by null
/external/syzkaller/vendor/golang.org/x/net/http2/
pipe.go
88
//
CloseWithError
causes the next Read (waking up a current blocked
93
func (p *pipe)
CloseWithError
(err error) { p.
closeWithError
(&p.err, err, nil) }
98
func (p *pipe) BreakWithError(err error) { p.
closeWithError
(&p.breakErr, err, nil) }
100
// closeWithErrorAndCode is like
CloseWithError
but also sets some code to run
102
func (p *pipe) closeWithErrorAndCode(err error, fn func()) { p.
closeWithError
(&p.err, err, fn) }
104
func (p *pipe)
closeWithError
(dst *error, err error, fn func()) {
140
// Err returns the error (if any) first set by BreakWithError or
CloseWithError
.
151
// with
CloseWithError
.
/cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java
151
public void
closeWithError
(String msg) throws RemoteException {
153
mLocal.
closeWithError
(msg);
Completed in 170 milliseconds