OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProcessedSize
(Results
1 - 6
of
6
) sorted by null
/external/lzma/CPP/7zip/Common/
FileStreams.h
60
STDMETHOD(Read)(void *data, UInt32 size, UInt32 *
processedSize
);
74
STDMETHOD(Read)(void *data, UInt32 size, UInt32 *
processedSize
);
90
ProcessedSize
= 0;
95
ProcessedSize
= 0;
102
ProcessedSize
= 0;
107
ProcessedSize
= 0;
115
UInt64
ProcessedSize
;
128
STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *
processedSize
);
141
STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *
processedSize
);
StreamBinder.h
18
UInt64
ProcessedSize
;
24
HRESULT Read(void *data, UInt32 size, UInt32 *
processedSize
);
27
HRESULT Write(const void *data, UInt32 size, UInt32 *
processedSize
);
StreamBinder.cpp
19
STDMETHOD(Read)(void *data, UInt32 size, UInt32 *
processedSize
);
27
STDMETHODIMP CSequentialInStreamForBinder::Read(void *data, UInt32 size, UInt32 *
processedSize
)
28
{ return m_StreamBinder->Read(data, size,
processedSize
); }
37
STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *
processedSize
);
46
STDMETHODIMP CSequentialOutStreamForBinder::Write(const void *data, UInt32 size, UInt32 *
processedSize
)
47
{ return m_StreamBinder->Write(data, size,
processedSize
); }
65
ProcessedSize
= 0;
87
ProcessedSize
= 0;
90
HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *
processedSize
)
109
if (
processedSize
!= NULL)
[
all
...]
FileStreams.cpp
80
STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *
processedSize
)
85
if (
processedSize
!= NULL)
86
*
processedSize
= 0;
112
if (
processedSize
!= NULL)
113
*
processedSize
+= rem;
176
if (
processedSize
!= NULL)
177
*
processedSize
= realProcessedSize;
186
if (
processedSize
!= NULL)
187
*
processedSize
= 0;
191
if (
processedSize
!= NULL)
[
all
...]
/external/lzma/CPP/7zip/Archive/Common/
CoderMixer2MT.h
76
{ return _streamBinders[binderIndex].
ProcessedSize
; }
/external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp
441
_curSize = _outFileStreamSpec->
ProcessedSize
;
Completed in 41 milliseconds