7 writes to streamData
System (7)
sys\system\Media\SoundPlayer.cs (7)
201
streamData
= null;
219
this.
streamData
= null;
360
streamData
= new byte[streamLen];
429
streamData
= null;
444
this.
streamData
= null;
532
this.
streamData
= new byte[blockSize];
542
streamData
= newData;
10 references to streamData
System (10)
sys\system\Media\SoundPlayer.cs (10)
285
ValidateSoundData(
streamData
);
290
UnsafeNativeMethods.PlaySound(
streamData
, IntPtr.Zero, NativeMethods.SND_MEMORY | NativeMethods.SND_NODEFAULT | flags);
311
if (
streamData
!= null)
361
stream.Read(
streamData
, 0, streamLen);
534
int readBytes = stream.Read(
streamData
, currentPos, blockSize);
539
if (
streamData
.Length < currentPos + blockSize) {
540
byte[] newData = new byte[
streamData
.Length * 2];
541
Array.Copy(
streamData
, newData,
streamData
.Length);
544
readBytes = stream.Read(
streamData
, currentPos, blockSize);