OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SE_CLOSE
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/base/
sslstreamadapterhelper.cc
127
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
opensslstreamadapter.cc
582
if ((events &
SE_CLOSE
)) {
583
LOG(LS_VERBOSE) << "OpenSSLStreamAdapter::OnEvent(
SE_CLOSE
, " << err << ")";
585
events_to_signal |=
SE_CLOSE
;
586
//
SE_CLOSE
is the only event that uses the final parameter to OnEvent().
709
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
stream.h
63
//
SE_CLOSE
: The stream has transitioned to the SS_CLOSED state
66
enum StreamEvent { SE_OPEN = 1, SE_READ = 2, SE_WRITE = 4,
SE_CLOSE
= 8 };
102
// Attempt to transition to the SS_CLOSED state.
SE_CLOSE
will not be
109
// If
SE_CLOSE
is signalled, then the third argument is the associated error
[
all
...]
/external/chromium/third_party/libjingle/source/talk/base/
opensslstreamadapter.cc
390
if ((events &
SE_CLOSE
)) {
391
LOG(LS_INFO) << "OpenSSLStreamAdapter::OnEvent(
SE_CLOSE
, " << err << ")";
393
events_to_signal |=
SE_CLOSE
;
394
//
SE_CLOSE
is the only event that uses the final parameter to OnEvent().
501
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
stream.h
61
//
SE_CLOSE
: The stream has transitioned to the SS_CLOSED state
64
enum StreamEvent { SE_OPEN = 1, SE_READ = 2, SE_WRITE = 4,
SE_CLOSE
= 8 };
91
// Attempt to transition to the SS_CLOSED state.
SE_CLOSE
will not be
98
// If
SE_CLOSE
is signalled, then the third argument is the associated error
Completed in 575 milliseconds