HomeSort by relevance Sort by last modified time
    Searched refs:ProcessedSize (Results 1 - 8 of 8) sorted by null

  /external/lzma/CPP/7zip/Common/
StreamBinder.h 35 UInt64 ProcessedSize;
42 HRESULT Read(void *data, UInt32 size, UInt32 *processedSize);
43 HRESULT Write(const void *data, UInt32 size, UInt32 *processedSize);
StreamBinder.cpp 16 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
21 STDMETHODIMP CBinderInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
22 { return _binder->Read(data, size, processedSize); }
31 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
36 STDMETHODIMP CBinderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
37 { return _binder->Write(data, size, processedSize); }
60 ProcessedSize = 0;
73 ProcessedSize = 0;
87 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
89 if (processedSize)
    [all...]
FileStreams.h 87 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
105 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
121 ProcessedSize = 0;
126 ProcessedSize = 0;
132 UInt64 ProcessedSize;
145 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
163 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
FileStreams.cpp 57 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize)
62 if (processedSize)
63 *processedSize = 0;
89 if (processedSize)
90 *processedSize += rem;
153 if (processedSize)
154 *processedSize = realProcessedSize;
177 if (processedSize)
178 *processedSize = 0;
186 if (processedSize)
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 706 UInt64 processedSize = encoderSpec->GetInputProcessedSize();
708 if (fileSizeWasUsed && processedSize != fileSize)
755 Print_Size("Output size: ", outStreamSpec->ProcessedSize);
  /external/lzma/CPP/7zip/Archive/Common/
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;
  /external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp 47 STDMETHODIMP COutStreamWithHash::Write(const void *data, UInt32 size, UInt32 *processedSize)
55 if (processedSize)
56 *processedSize = size;
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
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...]

Completed in 148 milliseconds