Home
last modified time | relevance | path

Searched refs:max_size_bytes (Results 1 – 25 of 25) sorted by relevance

/external/webrtc/api/
Drtc_event_log_output_file.cc34 size_t max_size_bytes) in RtcEventLogOutputFile() argument
39 max_size_bytes) {} in RtcEventLogOutputFile()
41 RtcEventLogOutputFile::RtcEventLogOutputFile(FILE* file, size_t max_size_bytes) in RtcEventLogOutputFile() argument
42 : RtcEventLogOutputFile(FileWrapper(file), max_size_bytes) {} in RtcEventLogOutputFile()
45 size_t max_size_bytes) in RtcEventLogOutputFile() argument
46 : max_size_bytes_(max_size_bytes), file_(std::move(file)) { in RtcEventLogOutputFile()
Drtc_event_log_output_file.h30 RtcEventLogOutputFile(const std::string& file_name, size_t max_size_bytes);
34 RtcEventLogOutputFile(FILE* file, size_t max_size_bytes);
43 RtcEventLogOutputFile(FileWrapper file, size_t max_size_bytes);
Dpeer_connection_interface.h1418 virtual bool StartAecDump(FILE* file, int64_t max_size_bytes) { in StartAecDump() argument
/external/perfetto/test/trace_processor/memory/
Dandroid_ion.out6 max_size_bytes: 1100.0
13 max_size_bytes: 2000.0
Dandroid_dma_heap_stat.out4 max_size_bytes: 2048.0
Dandroid_ion_stat.out6 max_size_bytes: 2000.0
Dandroid_fastrpc_dma_stat.out6 max_size_bytes: 2000.0
/external/perfetto/protos/perfetto/metrics/android/
Ddma_heap_metric.proto25 optional double max_size_bytes = 3; field
Dion_metric.proto27 optional double max_size_bytes = 4; field
Dfastrpc_metric.proto27 optional double max_size_bytes = 4; field
/external/webrtc/pc/
Dchannel_manager.cc388 int64_t max_size_bytes) { in StartAecDump() argument
390 return media_engine_->voice().StartAecDump(std::move(file), max_size_bytes); in StartAecDump()
Dpeer_connection_factory.h71 bool StartAecDump(FILE* file, int64_t max_size_bytes) override;
Dchannel_manager.h158 bool StartAecDump(webrtc::FileWrapper file, int64_t max_size_bytes);
Dpeer_connection_factory.cc219 bool PeerConnectionFactory::StartAecDump(FILE* file, int64_t max_size_bytes) { in StartAecDump() argument
221 return channel_manager_->StartAecDump(FileWrapper(file), max_size_bytes); in StartAecDump()
/external/webrtc/media/base/
Dmedia_engine.h89 int64_t max_size_bytes) = 0;
Dfake_media_engine.cc559 int64_t max_size_bytes) { in StartAecDump() argument
Dfake_media_engine.h536 bool StartAecDump(webrtc::FileWrapper file, int64_t max_size_bytes) override;
/external/webrtc/sdk/android/api/org/webrtc/
DPeerConnection.java1150 public boolean startRtcEventLog(int file_descriptor, int max_size_bytes) { in startRtcEventLog() argument
1151 return nativeStartRtcEventLog(file_descriptor, max_size_bytes); in startRtcEventLog()
1273 private native boolean nativeStartRtcEventLog(int file_descriptor, int max_size_bytes); in nativeStartRtcEventLog() argument
/external/llvm-project/llvm/include/llvm-c/
Dlto.h906 unsigned max_size_bytes);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
Dlto.h891 unsigned max_size_bytes);
/external/webrtc/sdk/android/src/jni/pc/
Dpeer_connection.cc772 int max_size_bytes) { in JNI_PeerConnection_StartRtcEventLog() argument
774 const size_t max_size = (max_size_bytes < 0) in JNI_PeerConnection_StartRtcEventLog()
776 : rtc::saturated_cast<size_t>(max_size_bytes); in JNI_PeerConnection_StartRtcEventLog()
/external/webrtc/media/engine/
Dwebrtc_voice_engine.h80 bool StartAecDump(webrtc::FileWrapper file, int64_t max_size_bytes) override;
Dwebrtc_voice_engine.cc629 int64_t max_size_bytes) { in StartAecDump() argument
640 return ap->CreateAndAttachAecDump(file.Release(), max_size_bytes, in StartAecDump()
/external/perfetto/protos/perfetto/metrics/
Dperfetto_merged_metrics.proto167 optional double max_size_bytes = 3; field
184 optional double max_size_bytes = 4; field
397 optional double max_size_bytes = 4; field
/external/webrtc/modules/audio_processing/
Daudio_processing_unittest.cc399 int max_size_bytes);
1355 int max_size_bytes) { in ProcessDebugDump() argument
1381 AecDumpFactory::Create(out_filename, max_size_bytes, &worker_queue); in ProcessDebugDump()