Home
last modified time | relevance | path

Searched refs:stream_status_by_sid_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/media/sctp/
Dsctp_transport.cc543 auto it = stream_status_by_sid_.find(sid); in OpenStream()
544 if (it == stream_status_by_sid_.end()) { in OpenStream()
545 stream_status_by_sid_[sid] = StreamStatus(); in OpenStream()
568 auto it = stream_status_by_sid_.find(sid); in ResetStream()
569 if (it == stream_status_by_sid_.end() || !it->second.is_open()) { in ResetStream()
635 auto it = stream_status_by_sid_.find(message->send_params().sid); in SendMessageInternal()
636 if (it == stream_status_by_sid_.end() || !it->second.is_open()) { in SendMessageInternal()
910 stream_status_by_sid_, in SendQueuedStreamResets()
933 stream_status_by_sid_) { in SendQueuedStreamResets()
957 for (auto it = stream_status_by_sid_.begin(); in SendQueuedStreamResets()
[all …]
Dsctp_transport.h269 std::map<uint32_t, StreamStatus> stream_status_by_sid_; variable