Searched refs:RtcEventLogOutputFile (Results 1 – 9 of 9) sorted by relevance
/external/webrtc/api/ |
D | rtc_event_log_output_file.cc | 26 const size_t RtcEventLogOutputFile::kMaxReasonableFileSize = 29 RtcEventLogOutputFile::RtcEventLogOutputFile(const std::string& file_name) in RtcEventLogOutputFile() function in webrtc::RtcEventLogOutputFile 30 : RtcEventLogOutputFile(FileWrapper::OpenWriteOnly(file_name), in RtcEventLogOutputFile() 33 RtcEventLogOutputFile::RtcEventLogOutputFile(const std::string& file_name, in RtcEventLogOutputFile() function in webrtc::RtcEventLogOutputFile 38 : RtcEventLogOutputFile(FileWrapper::OpenWriteOnly(file_name), in RtcEventLogOutputFile() 41 RtcEventLogOutputFile::RtcEventLogOutputFile(FILE* file, size_t max_size_bytes) in RtcEventLogOutputFile() function in webrtc::RtcEventLogOutputFile 42 : RtcEventLogOutputFile(FileWrapper(file), max_size_bytes) {} in RtcEventLogOutputFile() 44 RtcEventLogOutputFile::RtcEventLogOutputFile(FileWrapper file, in RtcEventLogOutputFile() function in webrtc::RtcEventLogOutputFile 53 bool RtcEventLogOutputFile::IsActive() const { in IsActive() 57 bool RtcEventLogOutputFile::Write(const std::string& output) { in Write() [all …]
|
D | rtc_event_log_output_file_unittest.cc | 54 auto output_file = std::make_unique<RtcEventLogOutputFile>(output_file_name_); in TEST_F() 60 auto output_file = std::make_unique<RtcEventLogOutputFile>(illegal_filename); in TEST_F() 68 auto output_file = std::make_unique<RtcEventLogOutputFile>(output_file_name_); in TEST_F() 79 std::make_unique<RtcEventLogOutputFile>(output_file_name_, 2); in TEST_F() 99 std::make_unique<RtcEventLogOutputFile>(output_file_name_, size_limit); in TEST_F() 110 std::make_unique<RtcEventLogOutputFile>(output_file_name_, 2); in TEST_F() 116 std::make_unique<RtcEventLogOutputFile>(output_file_name_, 3); in TEST_F() 123 std::make_unique<RtcEventLogOutputFile>(output_file_name_, 3); in TEST_F() 132 std::make_unique<RtcEventLogOutputFile>(output_file_name_, 2); in TEST_F() 138 auto output_file = std::make_unique<RtcEventLogOutputFile>( in TEST_F() [all …]
|
D | rtc_event_log_output_file.h | 24 class RtcEventLogOutputFile final : public RtcEventLogOutput { 29 explicit RtcEventLogOutputFile(const std::string& file_name); 30 RtcEventLogOutputFile(const std::string& file_name, size_t max_size_bytes); 34 RtcEventLogOutputFile(FILE* file, size_t max_size_bytes); 36 ~RtcEventLogOutputFile() override = default; 43 RtcEventLogOutputFile(FileWrapper file, size_t max_size_bytes);
|
/external/webrtc/video/ |
D | video_quality_test.cc | 1217 std::unique_ptr<RtcEventLogOutputFile> send_output( in RunWithAnalyzer() 1218 std::make_unique<RtcEventLogOutputFile>( in RunWithAnalyzer() 1221 std::unique_ptr<RtcEventLogOutputFile> recv_output( in RunWithAnalyzer() 1222 std::make_unique<RtcEventLogOutputFile>( in RunWithAnalyzer() 1441 std::unique_ptr<RtcEventLogOutputFile> send_output( in RunWithRenderers() 1442 std::make_unique<RtcEventLogOutputFile>( in RunWithRenderers() 1445 std::unique_ptr<RtcEventLogOutputFile> recv_output( in RunWithRenderers() 1446 std::make_unique<RtcEventLogOutputFile>( in RunWithRenderers()
|
/external/webrtc/call/ |
D | rampup_tests.cc | 603 std::make_unique<RtcEventLogOutputFile>( in RampUpTest() 607 std::make_unique<RtcEventLogOutputFile>( in RampUpTest()
|
/external/webrtc/test/pc/e2e/ |
D | peer_connection_quality_test.cc | 277 auto alice_rtc_event_log = std::make_unique<webrtc::RtcEventLogOutputFile>( in Run() 283 auto bob_rtc_event_log = std::make_unique<webrtc::RtcEventLogOutputFile>( in Run()
|
/external/webrtc/logging/rtc_event_log/ |
D | rtc_event_log_unittest.cc | 334 std::make_unique<RtcEventLogOutputFile>(temp_filename_, 10000000), in WriteLog() 875 std::make_unique<RtcEventLogOutputFile>(temp_filename, 10000000), in TEST_P()
|
/external/webrtc/sdk/android/src/jni/pc/ |
D | peer_connection.cc | 783 std::make_unique<RtcEventLogOutputFile>(f, max_size)); in JNI_PeerConnection_StartRtcEventLog()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCPeerConnection.mm | 593 std::make_unique<webrtc::RtcEventLogOutputFile>(f, max_size));
|