OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SE_CLOSE
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/base/
sslstreamadapterhelper.cc
116
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
stream.h
48
//
SE_CLOSE
: The stream has transitioned to the SS_CLOSED state
51
enum StreamEvent { SE_OPEN = 1, SE_READ = 2, SE_WRITE = 4,
SE_CLOSE
= 8 };
87
// Attempt to transition to the SS_CLOSED state.
SE_CLOSE
will not be
94
// If
SE_CLOSE
is signalled, then the third argument is the associated error
opensslstreamadapter.cc
717
if ((events &
SE_CLOSE
)) {
718
LOG(LS_VERBOSE) << "OpenSSLStreamAdapter::OnEvent(
SE_CLOSE
, " << err << ")";
720
events_to_signal |=
SE_CLOSE
;
721
//
SE_CLOSE
is the only event that uses the final parameter to OnEvent().
856
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
[
all
...]
Completed in 316 milliseconds