Home
last modified time | relevance | path

Searched refs:maxSizeBytes (Results 1 – 8 of 8) sorted by relevance

/external/conscrypt/testing/src/main/java/libcore/tlswire/util/
DIoUtils.java23 public static byte[] readTlsVariableLengthByteVector(DataInput in, int maxSizeBytes) in readTlsVariableLengthByteVector() argument
25 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes); in readTlsVariableLengthByteVector()
30 public static int[] readTlsVariableLengthUnsignedShortVector(DataInput in, int maxSizeBytes) in readTlsVariableLengthUnsignedShortVector() argument
32 int sizeBytes = readTlsVariableLengthVectorSizeBytes(in, maxSizeBytes); in readTlsVariableLengthUnsignedShortVector()
40 private static int readTlsVariableLengthVectorSizeBytes(DataInput in, int maxSizeBytes) in readTlsVariableLengthVectorSizeBytes() argument
42 if (maxSizeBytes < 0x100) { in readTlsVariableLengthVectorSizeBytes()
44 } else if (maxSizeBytes < 0x10000) { in readTlsVariableLengthVectorSizeBytes()
46 } else if (maxSizeBytes < 0x1000000) { in readTlsVariableLengthVectorSizeBytes()
/external/webrtc/webrtc/voice_engine/include/
Dvoe_file.h116 int maxSizeBytes = -1) = 0;
128 int maxSizeBytes = -1) = 0;
/external/webrtc/webrtc/voice_engine/
Dvoe_file_impl.h66 int maxSizeBytes = -1) override;
78 int maxSizeBytes = -1) override;
Dvoe_file_impl.cc306 int maxSizeBytes) { in StartRecordingPlayout() argument
310 channel, fileNameUTF8, maxSizeBytes); in StartRecordingPlayout()
380 int maxSizeBytes) { in StartRecordingMicrophone() argument
384 fileNameUTF8, maxSizeBytes); in StartRecordingMicrophone()
/external/webrtc/webrtc/modules/media_file/
Dmedia_file.h130 const uint32_t maxSizeBytes = 0) = 0;
Dmedia_file_impl.cc734 const uint32_t maxSizeBytes) in StartRecordingAudioFile() argument
762 if(maxSizeBytes) in StartRecordingAudioFile()
764 outputStream->SetMaxFileSize(maxSizeBytes); in StartRecordingAudioFile()
Dmedia_file_impl.h70 const uint32_t maxSizeBytes = 0) override;
/external/webrtc/webrtc/test/
Dmock_voice_engine.h208 int maxSizeBytes));
215 int maxSizeBytes));