Searched refs:SE_WRITE (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/webrtc/base/
H A Dsocketstream.cc102 SignalEvent(this, SE_OPEN | SE_READ | SE_WRITE, 0);
112 SignalEvent(this, SE_WRITE, 0);
H A Dopensslstreamadapter.cc693 if ((events & (SE_READ|SE_WRITE))) {
696 << ((events & SE_WRITE) ? " SE_WRITE" : "");
698 events_to_signal |= events & (SE_READ|SE_WRITE);
706 (events & SE_WRITE)) {
708 events_to_signal |= SE_WRITE;
710 if (((events & SE_WRITE) && ssl_read_needs_write_) ||
822 StreamAdapterInterface::OnEvent(stream(), SE_OPEN|SE_READ|SE_WRITE, 0); local
H A Dsocketpool.cc214 if (events == SE_WRITE) {
H A Dsslstreamadapter_unittest.cc124 if (sig & rtc::SE_WRITE) {
128 PostEvent(sig & rtc::SE_WRITE, 0);
203 PostEvent(rtc::SE_WRITE, 0);
323 if ((stream == client_ssl_.get()) && (sig & rtc::SE_WRITE)) {
H A Dhttpbase.cc764 if ((events & SE_WRITE) && (mode_ == HM_SEND)) {
794 if ((events & SE_WRITE) && (mode_ == HM_RECV)) {
H A Dstream.h50 // SE_WRITE: Data can be written, so Write is likely to not return SR_BLOCK
51 enum StreamEvent { SE_OPEN = 1, SE_READ = 2, SE_WRITE = 4, SE_CLOSE = 8 }; enumerator in enum:rtc::StreamEvent
144 // amount of buffer is not yet available, return NULL and Signal SE_WRITE
H A Dstream.cc765 PostEvent(owner_, SE_WRITE, 0);
813 PostEvent(owner_, SE_WRITE, 0);
H A Dtestutils.h54 SSE_WRITE = SE_WRITE,
/external/webrtc/webrtc/libjingle/xmpp/
H A Dxmppsocket.cc122 events |= rtc::SE_WRITE;
132 if ((events & rtc::SE_WRITE)) {
198 OnEvent(stream_, rtc::SE_WRITE, 0);

Completed in 208 milliseconds