1 write to _blockList
WindowsBase (1)
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (1)
811
_blockList
= null;
24 references to _blockList
WindowsBase (24)
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (24)
61
return
_blockList
.GetEnumerator();
341
_blockList
.Remove(localFileBlock);
488
_blockList
.Add(rawBlock);
772
if (
_blockList
!= null)
774
foreach (IZipIOBlock block in
_blockList
)
835
Invariant.Assert(
_blockList
.Count >= _requiredBlockCount);
845
return
_blockList
.Count - _requiredBlockCount;
893
foreach (IZipIOBlock currentBlock in
_blockList
)
910
int blockListCount =
_blockList
.Count;
913
IZipIOBlock currentBlock = (IZipIOBlock)
_blockList
[i];
934
if (((IZipIOBlock)
_blockList
[j]).PreSaveNotification(currentBlockOffset, currentBlockSize) ==
977
for (int i = 0; i <
_blockList
.Count; i++)
979
IZipIOBlock currentBlock = (IZipIOBlock)
_blockList
[i];
1064
int blockPosition =
_blockList
.IndexOf(Zip64EndOfCentralDirectoryBlock);
1120
int blockPosition =
_blockList
.IndexOf(Zip64EndOfCentralDirectoryLocatorBlock);
1146
int blockPosition =
_blockList
.IndexOf(EndOfCentralDirectoryBlock);
1173
for (int blockIndex =
_blockList
.Count - 1; blockIndex >= 0; --blockIndex)
1176
ZipIORawDataFileBlock rawBlock =
_blockList
[blockIndex] as ZipIORawDataFileBlock;
1186
_blockList
.RemoveAt(blockIndex); // remove the old big raw data block
1191
_blockList
.Insert(blockIndex, suffixBlock);
1195
_blockList
.Insert(blockIndex, block);
1200
_blockList
.Insert(blockIndex, prefixBlock);
1217
_blockList
.Insert(blockPosition, block);
1229
_blockList
.Add(block);