OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SE_CLOSE
(Results
1 - 11
of
11
) sorted by null
/external/webrtc/webrtc/base/
socketpool.cc
89
if ((events &
SE_CLOSE
) == 0) {
222
ASSERT(0 != (events & (SE_READ|
SE_CLOSE
)));
223
if (0 != (events &
SE_CLOSE
)) {
httpbase.cc
408
OnHttpStreamEvent(http_stream_,
SE_CLOSE
, HE_DISCONNECTED);
445
OnHttpStreamEvent(http_stream_,
SE_CLOSE
, HE_DISCONNECTED);
700
OnHttpStreamEvent(http_stream_,
SE_CLOSE
, error);
745
ds->SignalEvent(ds,
SE_CLOSE
, err);
778
if ((events &
SE_CLOSE
) == 0)
804
if (events &
SE_CLOSE
) {
socketstream.cc
117
SignalEvent(this,
SE_CLOSE
, err);
sslstreamadapterhelper.cc
116
StreamAdapterInterface::OnEvent(stream(),
SE_CLOSE
, err);
testutils.h
55
SSE_CLOSE =
SE_CLOSE
,
206
events |=
SE_CLOSE
;
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
...]
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
sslstreamadapter_unittest.cc
113
int mask = (rtc::SE_READ | rtc::
SE_CLOSE
);
[
all
...]
stream.cc
953
} else if (events &
SE_CLOSE
) {
/external/webrtc/webrtc/p2p/base/
dtlstransportchannel.cc
549
if (sig & rtc::
SE_CLOSE
) {
550
ASSERT(sig == rtc::
SE_CLOSE
); //
SE_CLOSE
should be by itself.
/external/webrtc/webrtc/libjingle/xmpp/
xmppsocket.cc
151
if ((events & rtc::
SE_CLOSE
))
Completed in 790 milliseconds