/external/webrtc/webrtc/base/ |
transformadapter.cc | 37 return SR_EOS; 41 return SR_EOS; 56 } else if (result == SR_EOS) { 70 if (result == SR_EOS) { 71 // Note: Don't signal SR_EOS this iteration, unless out_len is zero 105 return SR_EOS; 110 return SR_EOS; 121 if (result == SR_EOS) { 122 // Note: Don't signal SR_EOS this iteration, unless no data written 148 } else if (result == SR_EOS) { [all...] |
filerotatingstream.cc | 99 return SR_EOS; 102 return SR_EOS; 116 if (result == SR_EOS || result == SR_ERROR) { 133 return result == SR_EOS ? SR_SUCCESS : result; 148 return SR_EOS;
|
filerotatingstream_unittest.cc | 70 EXPECT_EQ(SR_EOS, stream->ReadAll(buffer.get(), 1, nullptr, nullptr)); 228 EXPECT_EQ(SR_EOS, stream->ReadAll(buffer.get(), 1, nullptr, nullptr)); 286 EXPECT_EQ(SR_EOS, stream_->ReadAll(buffer.get(), 1, nullptr, nullptr)); 313 EXPECT_EQ(SR_EOS, stream_->ReadAll(buffer.get(), 1, nullptr, nullptr));
|
socketstream.cc | 76 return SR_EOS;
|
stream.cc | 392 return SR_EOS; 396 return SR_EOS; 409 return SR_EOS; 536 return SR_EOS; 616 return (buffer_length_ >= size) ? SR_SUCCESS : SR_EOS; 857 return (state_ != SS_CLOSED) ? SR_BLOCK : SR_EOS; 879 return SR_EOS; 981 return SR_EOS; 1086 if (result == SR_EOS) {
|
multipart.cc | 148 if (SR_EOS != result) { 156 return SR_EOS;
|
httpbase.cc | 260 return (HE_NONE == error_) ? SR_EOS : SR_ERROR; 299 result = (HE_NONE == error_) ? SR_EOS : SR_ERROR; 534 case SR_EOS: 651 } else if (result == SR_EOS) { 864 case SR_EOS:
|
optionsfile.cc | 56 if (res != SR_EOS) {
|
sslstreamadapter_unittest.cc | 100 if (r == rtc::SR_EOS) 101 return rtc::SR_EOS; 600 rtc::SR_EOS) { 632 if (r == rtc::SR_ERROR || r == rtc::SR_EOS) { 840 ASSERT_EQ(rtc::SR_EOS, rv); [all...] |
linux.cc | 212 if ((instream_->ReadLine(&line)) == SR_EOS) {
|
stream_unittest.cc | 310 EXPECT_EQ(SR_EOS, stream->Write(in, kSize / 2, &bytes, NULL)); 313 EXPECT_EQ(SR_EOS, stream->Read(out, kSize / 2, &bytes, NULL));
|
opensslstreamadapter.cc | 243 } else if (result == SR_EOS) { 573 return SR_EOS; 622 return SR_EOS; [all...] |
httpbase_unittest.cc | 250 EXPECT_EQ(SR_EOS, http_stream->Read(buffer, sizeof(buffer), &read, NULL));
|
stream.h | 43 enum StreamResult { SR_ERROR, SR_SUCCESS, SR_BLOCK, SR_EOS }; 81 // SR_EOS: the end-of-stream has been reached, or the stream is in the 192 // Write will return SR_EOS/SR_ERROR at some point). Note that calling this 688 // end-of-stream (returns SR_EOS), and all the data has been written successful 690 // returns SR_BLOCK, SR_ERROR, or SR_EOS, then the function immediately returns
|
httpclient.cc | 232 if ((SR_EOS == result) || (1 == formatted_header.size())) {
|
/external/webrtc/talk/media/base/ |
rtpdump_unittest.cc | 137 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet)); 153 EXPECT_EQ(rtc::SR_EOS, reader_w_ssrc.ReadPacket(&packet)); 175 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet)); 204 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet)); 229 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet)); 266 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet)); 288 EXPECT_EQ(rtc::SR_EOS, reader.ReadPacket(&packet));
|
rtpdump.cc | 232 } else if (rtc::SR_EOS == res) {
|
/external/webrtc/talk/media/devices/ |
filevideocapturer.cc | 296 return rtc::SR_EOS; 332 if (rtc::SR_EOS == result) { // Loop back if repeat.
|
/external/webrtc/webrtc/p2p/base/ |
pseudotcp_unittest.cc | 293 rtc::SR_EOS) { 413 rtc::SR_EOS) { 540 rtc::SR_EOS) {
|
dtlstransportchannel.cc | 55 return rtc::SR_EOS;
|