Home
last modified time | relevance | path

Searched refs:HM_NONE (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/base/
Dhttpbase.cc363 HttpBase::HttpBase() : mode_(HM_NONE), data_(NULL), notify_(NULL), in HttpBase()
368 ASSERT(HM_NONE == mode_); in ~HttpBase()
378 if ((mode_ != HM_NONE) || (http_stream_ != NULL) || (stream == NULL)) { in attach()
384 mode_ = (http_stream_->GetState() == SS_OPENING) ? HM_CONNECT : HM_NONE; in attach()
390 ASSERT(HM_NONE == mode_); in detach()
391 if (mode_ != HM_NONE) { in detach()
404 ASSERT(HM_NONE == mode_); in send()
405 if (mode_ != HM_NONE) { in send()
441 ASSERT(HM_NONE == mode_); in recv()
442 if (mode_ != HM_NONE) { in recv()
[all …]
Dhttpbase_unittest.cc68 Event e = { E_HEADER_COMPLETE, chunked, data_size, HM_NONE, HE_NONE}; in onHttpHeaderComplete()
82 Event e = { E_CLOSED, false, 0, HM_NONE, err }; in onHttpClosed()
Dhttpbase.h71 enum HttpMode { HM_NONE, HM_CONNECT, HM_RECV, HM_SEND }; enumerator
Dhttpclient.cc337 if (base_.mode() != HM_NONE) { in start()