Home
last modified time | relevance | path

Searched refs:lastFrame_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/print/print_fwk/frameworks/helper/scan_helper/src/
H A Dscan_parameters.cpp21 lastFrame_(false), bytesPerLine_(0), pixelsPerLine_(0), lines_(0), depth_(0) in ScanParameters()
27 lastFrame_ = right.lastFrame_; in ScanParameters()
38 lastFrame_ = right.lastFrame_; in operator =()
53 lastFrame_ = false; in Reset()
67 lastFrame_ = lastFrame; in SetLastFrame()
97 return lastFrame_; in GetLastFrame()
134 parcel.WriteBool(lastFrame_); in Marshalling()
152 SCAN_HILOGI("LastFrame = %{public}d", lastFrame_); in Dump()
/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/screensinkprocessor/decoder/src/
H A Dimage_sink_decoder.cpp88 lastFrame_ = new uint8_t[lastFrameSize_]; in AddSurface()
94 return lastFrame_; in GetLastFrame()
190 if (lastFrame_ != nullptr) { in ConsumeSurface()
191 delete [] lastFrame_; in ConsumeSurface()
194 lastFrame_ = new uint8_t[lastFrameSize_]; in ConsumeSurface()
204 int32_t ret = memcpy_s(lastFrame_, lastFrameSize_, windowSurfaceAddr, lastFrameSize_); in ConsumeSurface()
235 if (lastFrame_ != nullptr) { in ReleaseDecoder()
236 delete [] lastFrame_; in ReleaseDecoder()
/ohos5.0/base/print/print_fwk/frameworks/helper/scan_helper/include/
H A Dscan_parameters.h55 bool lastFrame_; variable
/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/screensinkprocessor/decoder/include/
H A Dimage_sink_decoder.h89 uint8_t *lastFrame_ = nullptr; variable