Home
last modified time | relevance | path

Searched refs:RtcEventLogOutputFile (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/api/
Drtc_event_log_output_file.cc26 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 …]
Drtc_event_log_output_file_unittest.cc54 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 …]
Drtc_event_log_output_file.h24 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/
Dvideo_quality_test.cc1217 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/
Drampup_tests.cc603 std::make_unique<RtcEventLogOutputFile>( in RampUpTest()
607 std::make_unique<RtcEventLogOutputFile>( in RampUpTest()
/external/webrtc/test/pc/e2e/
Dpeer_connection_quality_test.cc277 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/
Drtc_event_log_unittest.cc334 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/
Dpeer_connection.cc783 std::make_unique<RtcEventLogOutputFile>(f, max_size)); in JNI_PeerConnection_StartRtcEventLog()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCPeerConnection.mm593 std::make_unique<webrtc::RtcEventLogOutputFile>(f, max_size));