1 write to m_fs
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
240
m_fs
= new
43 references to m_fs
mscorlib (43)
system\io\isolatedstorage\isolatedstoragefilestream.cs (43)
273
newFileSize = IsolatedStorageFile.RoundToBlockSize((ulong)
m_fs
.Length);
296
return
m_fs
.CanRead;
303
return
m_fs
.CanWrite;
310
return
m_fs
.CanSeek;
316
return
m_fs
.IsAsync;
322
return
m_fs
.Length;
329
return
m_fs
.Position;
367
if (
m_fs
!= null)
368
m_fs
.Close();
382
m_fs
.Flush();
386
m_fs
.Flush(flushToDisk);
427
ulong oldLen = (ulong)
m_fs
.Length;
439
m_fs
.SetLength(value);
470
m_fs
.Lock(position, length);
479
m_fs
.Unlock(position, length);
497
long pos =
m_fs
.Position;
499
m_fs
.Seek((long)oldLen, SeekOrigin.Begin);
505
m_fs
.Write(buffer, 0, (int)rem);
506
m_fs
.Position = pos;
527
m_fs
.Write(buffer, 0, allign);
534
m_fs
.Write(buffer, 0, s_BlockSize);
539
m_fs
.Write(buffer, 0, (int) (rem & ((ulong)s_BlockSize - 1)));
542
m_fs
.Position = pos;
546
return
m_fs
.Read(buffer, offset, count);
550
return
m_fs
.ReadByte();
571
oldLen = (ulong)
m_fs
.Length;
579
newLen = (ulong) ((
m_fs
.Position + offset) < 0 ? 0 : (
m_fs
.Position + offset));
582
newLen = (ulong)((
m_fs
.Length + offset) < 0 ? 0 : (
m_fs
.Length + offset));
598
ret =
m_fs
.Seek(offset, origin);
629
ulong oldLen = (ulong)
m_fs
.Length;
630
ulong newLen = (ulong)(
m_fs
.Position + count);
637
m_fs
.Write(buffer, offset, count);
667
ulong oldLen = (ulong)
m_fs
.Length;
668
ulong newLen = (ulong)
m_fs
.Position + 1;
675
m_fs
.WriteByte(value);
697
return
m_fs
.BeginRead(buffer, offset, numBytes, userCallback, stateObject);
706
return
m_fs
.EndRead(asyncResult);
722
ulong oldLen = (ulong)
m_fs
.Length;
723
ulong newLen = (ulong)
m_fs
.Position + (ulong)numBytes;
728
return
m_fs
.BeginWrite(buffer, offset, numBytes, userCallback, stateObject);
750
m_fs
.EndWrite(asyncResult);