Home
last modified time | relevance | path

Searched refs:_crcStreamSpec (Results 1 – 3 of 3) sorted by relevance

/external/lzma/CPP/7zip/Archive/7z/
D7zFolderOutStream.cpp12 _crcStreamSpec = new COutStreamWithCRC; in CFolderOutStream()
13 _crcStream = _crcStreamSpec; in CFolderOutStream()
46 _crcStreamSpec->SetStream(realOutStream); in OpenFile()
47 _crcStreamSpec->Init(_checkCrc); in OpenFile()
59 _crcStreamSpec->ReleaseStream(); in CloseFileAndSetResult()
69 (fi.IsDir || !fi.CrcDefined || !_checkCrc || fi.Crc == _crcStreamSpec->GetCRC()) ? in CloseFileAndSetResult()
D7zUpdate.cpp510 COutStreamWithCRC *_crcStreamSpec; member in NArchive::N7z::CFolderOutStream2
529 _crcStreamSpec = new COutStreamWithCRC; in CFolderOutStream2()
530 _crcStream = _crcStreamSpec; in CFolderOutStream2()
557 _crcStreamSpec->ReleaseStream(); in ReleaseOutStream()
562 _crcStreamSpec->SetStream((*_extractStatuses)[_currentIndex] ? _outStream : NULL); in OpenFile()
563 _crcStreamSpec->Init(true); in OpenFile()
570 _crcStreamSpec->ReleaseStream(); in CloseFile()
579 return (file.IsDir || !file.CrcDefined || file.Crc == _crcStreamSpec->GetCRC()) ? S_OK: S_FALSE; in CloseFileAndSetResult()
D7zFolderOutStream.h20 COutStreamWithCRC *_crcStreamSpec; variable