/external/lzma/CPP/7zip/Archive/Common/ |
InStreamWithCRC.h | 19 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
MultiStream.h | 51 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
84 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
OutStreamWithCRC.h | 22 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
CoderMixer2.cpp | 9 STDMETHODIMP CSequentialInStreamCalcSize::Read(void *data, UInt32 size, UInt32 *processedSize)
18 if (processedSize)
19 *processedSize = realProcessed;
24 STDMETHODIMP COutStreamCalcSize::Write(const void *data, UInt32 size, UInt32 *processedSize)
30 if (processedSize)
31 *processedSize = size;
1039 return _streamBinders[bondIndex].ProcessedSize;
|
CoderMixer2.h | 38 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
66 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
/external/lzma/CPP/7zip/Compress/ |
LzmaDecoder.h | 71 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
74 HRESULT ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize);
|
PpmdDecoder.cpp | 152 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
156 if (processedSize)
157 *processedSize = (UInt32)(_processedSize - startPos);
|
Lzma2Decoder.cpp | 200 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
204 if (processedSize)
205 *processedSize = 0;
241 if (processedSize)
242 *processedSize = totalProcessed;
|
Lzma2Decoder.h | 78 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
PpmdDecoder.h | 63 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
Bcj2Coder.h | 105 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
Bcj2Coder.cpp | 545 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
547 if (processedSize)
548 *processedSize = 0;
577 if (processedSize)
578 *processedSize = totalProcessed;
|
/external/lzma/CPP/Windows/ |
FileIO.h | 180 bool Read1(void *data, UInt32 size, UInt32 &processedSize) throw();
181 bool ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw();
182 bool Read(void *data, UInt32 size, UInt32 &processedSize) throw();
195 bool WritePart(const void *data, UInt32 size, UInt32 &processedSize) throw();
196 bool Write(const void *data, UInt32 size, UInt32 &processedSize) throw();
|
FileIO.cpp | 335 bool CInFile::Read1(void *data, UInt32 size, UInt32 &processedSize) throw()
339 processedSize = (UInt32)processedLoc;
343 bool CInFile::ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw()
347 return Read1(data, size, processedSize);
350 bool CInFile::Read(void *data, UInt32 size, UInt32 &processedSize) throw()
352 processedSize = 0;
357 processedSize += processedLoc;
391 bool COutFile::WritePart(const void *data, UInt32 size, UInt32 &processedSize) throw()
397 processedSize = (UInt32)processedLoc;
401 bool COutFile::Write(const void *data, UInt32 size, UInt32 &processedSize) throw() [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zFolderInStream.h | 43 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
7zExtract.cpp | 55 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
145 STDMETHODIMP CFolderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
147 if (processedSize)
148 *processedSize = 0;
160 if (processedSize)
161 *processedSize += cur;
181 if (processedSize)
182 *processedSize += size;
|
7zDecode.cpp | 152 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
155 STDMETHODIMP CLockedSequentialInStreamMT::Read(void *data, UInt32 size, UInt32 *processedSize)
169 if (processedSize)
170 *processedSize = realProcessedSize;
196 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
199 STDMETHODIMP CLockedSequentialInStreamST::Read(void *data, UInt32 size, UInt32 *processedSize)
211 if (processedSize)
212 *processedSize = realProcessedSize;
|
7zUpdate.cpp | 1133 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
1138 STDMETHODIMP CRepackInStreamWithSizes::Read(void *data, UInt32 size, UInt32 *processedSize)
1140 return _stream->Read(data, size, processedSize);
1145 if (processedSize)
1146 *processedSize = realProcessedSize;
1272 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
1275 STDMETHODIMP CFolderOutStream2::Write(const void *data, UInt32 size, UInt32 *processedSize)
1277 if (processedSize)
1278 *processedSize = 0;
1290 if (processedSize)
[all...] |
/external/lzma/CPP/7zip/Common/ |
InOutTempBuffer.h | 44 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
FilterCoder.h | 195 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
199 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
/external/lzma/C/ |
MtCoder.c | 167 static SRes FullRead(ISeqInStream *stream, Byte *data, size_t *processedSize)
169 size_t size = *processedSize;
170 *processedSize = 0;
175 *processedSize += curSize;
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
SfxSetup.cpp | 61 UInt32 processedSize;
62 if (!inFile.Read(buffer + numBytesPrev, numReadBytes, processedSize))
64 if (processedSize == 0)
66 UInt32 numBytesInBuffer = numBytesPrev + processedSize;
|
/external/lzma/C/Util/7z/ |
7zMain.c | 525 size_t processedSize;
556 processedSize = outSizeProcessed;
558 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
|
/external/lzma/C/Util/SfxSetup/ |
SfxSetup.c | 423 size_t processedSize;
473 processedSize = outSizeProcessed;
474 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
|
/external/lzma/CPP/7zip/UI/FileManager/ |
ExtractCallback.cpp | 955 STDMETHODIMP CVirtFileSystem::Write(const void *data, UInt32 size, UInt32 *processedSize)
957 if (processedSize)
958 *processedSize = 0;
985 if (processedSize)
986 *processedSize = (UInt32)size;
992 return _outFileStream->Write(data, size, processedSize);
|