MCPcopy Create free account
hub / github.com/audacity/audacity / Read

Method Read

libraries/lib-network-manager/MultipartData.cpp:133–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131 }
132
133 size_t Read(void* buffer, size_t maxBytes) override
134 {
135 const auto bytesRead = mFile.Read(buffer, maxBytes);
136
137 if (bytesRead == wxInvalidOffset)
138 return 0;
139
140 return static_cast<size_t>(bytesRead);
141 }
142
143 bool Seek(int64_t offset, int origin = SEEK_SET) override
144 {

Callers 11

DoLoadSettingsMethod · 0.45
ProcessMethod · 0.45
ProjectNumericFormatsMethod · 0.45
ProjectTimeSignatureMethod · 0.45
GetMIDIDeviceInfoFunction · 0.45
StartPortMidiStreamMethod · 0.45
UpdatePrefsMethod · 0.45
DataStreamReadFunction · 0.45
MimePartReadFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected