Home
last modified time | relevance | path

Searched refs:flush (Results 1 – 25 of 35) sorted by relevance

12

/base/hiviewdfx/hidumper/frameworks/native/src/util/
Ddump_compressor.cpp56 int flush = 0; in Compress() local
71 …if (FillBuffer(flush, srcBuffer, buffInV, toRead, srcPos, srcBufferOffset) == DumpStatus::DUMP_FAI… in Compress()
74 if (DeflateBuffer(flush, buffOutV, dstPos) == DumpStatus::DUMP_FAIL) { in Compress()
77 } while (flush != Z_FINISH); in Compress()
92 DumpStatus DumpCompressor::FillBuffer(int& flush, CompressBuffer*& srcBuffer, char*& buffIn, in FillBuffer() argument
114 flush = flag ? Z_FINISH : Z_NO_FLUSH; in FillBuffer()
119 DumpStatus DumpCompressor::DeflateBuffer(int flush, char*& buffOut, size_t& dstPos) in DeflateBuffer() argument
125 if (deflate(&zStream_, flush) == Z_STREAM_ERROR) { in DeflateBuffer()
/base/hiviewdfx/hidumper/frameworks/native/include/util/
Ddump_compressor.h51 DumpStatus FillBuffer(int& flush, CompressBuffer*& srcBuffer, char*& buffIn,
53 DumpStatus DeflateBuffer(int flush, char*& buffOut, size_t& dst_pos);
/base/sensors/sensor/services/sensor/src/
Dflush_info_record.cpp48 FlushInfo flush(channel, isFirstFlush); in SetFlushInfo() local
54 it->second.push_back(flush); in SetFlushInfo()
56 std::vector<FlushInfo> vec { flush }; in SetFlushInfo()
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/
DLocaleList.java70 dataOutputStream.flush(); in write()
86 dataOutputStream.flush(); in write()
89 dataOutputStream.flush(); in write()
DStringPool.java123 dataOutputStream.flush(); in write()
DDataFetcher.java272 osw.flush(); in writeLocales()
298 osw.flush(); in writeData()
350 osw.flush(); in writeMeasureData()
/base/sensors/medical_sensor/services/medical_sensor/src/
Dflush_info_record.cpp60 struct FlushInfo flush(channel, isFirstFlush); in SetFlushInfo() local
66 it->second.push_back(flush); in SetFlushInfo()
68 std::vector<struct FlushInfo> vec { flush }; in SetFlushInfo()
/base/update/updater/services/log/
Dlog.cpp61 oss_ << std::endl << std::flush; in ~UpdaterLogger()
64 << logLevelMap_[level_] << " " << str << std::endl << std::flush; in ~UpdaterLogger()
71 g_updaterStage << std::endl << std::flush; in ~StageLogger()
73 std::cout << std::endl << std::flush; in ~StageLogger()
/base/hiviewdfx/hilog/services/hilogd/
Dlog_compress.cpp70 int flush = 0; in Compress() local
88 flush = flag ? Z_FINISH : Z_NO_FLUSH; in Compress()
95 if (deflate(&cStream, flush) == Z_STREAM_ERROR) { in Compress()
107 } while (flush != Z_FINISH); in Compress()
Dlog_persister_rotator.cpp104 m_currentLogOutput.flush(); in Input()
193 m_infoFile.flush(); in WriteRecoveryInfo()
/base/update/updater/services/package/pkg_algorithm/
Dpkg_algo_deflate.cpp27 int32_t PkgAlgoDeflate::DeflateData(const PkgStreamPtr outStream, z_stream &zstream, int32_t flush, in DeflateData() argument
33 ret = deflate(&zstream, flush); in DeflateData()
49 if (flush == Z_NO_FLUSH) { in DeflateData()
52 } while (ret == Z_OK && flush == Z_FINISH); in DeflateData()
Dpkg_algo_deflate.h61 z_stream &zstream, int32_t flush, PkgBuffer &outBuffer, size_t &destOffset) const;
/base/telephony/sms_mms/test/unittest/
Dcdma_sms_test.cpp92 cout << ss.str() << flush; in PrintAddr()
117 cout << s << "szData : " << ss.str() << endl << flush; in PrintSubAddr()
133 cout << s << "szData : " << ss.str() << endl << flush; in PrintSmsTeleSvcAddr()
184 cout << flush; in PrintHeader()
192 cout << flush; in PrintTimeAbs()
241 cout << flush; in PrintEncodeType()
269 cout << flush; in PrintUserData()
303 cout << flush; in PrintCmasData()
312 cout << flush; in PrintSmsReplyOption()
332 cout << flush; in PrintSmsValPeriod()
[all …]
/base/update/packaging_tools/
Dpatch_package_process.py533 self.new_dat_file_obj.flush()
534 self.patch_dat_file_obj.flush()
535 self.transfer_list_file_obj.flush()
540 self.new_dat_file_obj.flush()
541 self.patch_dat_file_obj.flush()
542 self.transfer_list_file_obj.flush()
/base/startup/init/services/modules/trace/
Dinit_trace.c343 int flush = Z_NO_FLUSH; in DumpCompressedTrace() local
357 flush = zs.avail_in == 0 ? Z_FINISH : Z_NO_FLUSH; in DumpCompressedTrace()
362 ret = deflate(&zs, flush); in DumpCompressedTrace()
366 PLUGIN_CHECK(bytesWritten >= have, flush = Z_FINISH; break, in DumpCompressedTrace()
369 } while (flush != Z_FINISH); in DumpCompressedTrace()
/base/hiviewdfx/hitrace/cmd/src/
Dhitrace_cmd.cpp140 out.flush(); in WriteStrToFile()
611 int flush = Z_NO_FLUSH; in DumpCompressedTrace() local
633 if (zs.avail_in == 0 && flush == Z_NO_FLUSH) { in DumpCompressedTrace()
636 flush = Z_FINISH; in DumpCompressedTrace()
654 ret = deflate(&zs, flush); in DumpCompressedTrace()
655 if (flush == Z_FINISH && ret == Z_STREAM_END) { in DumpCompressedTrace()
/base/hiviewdfx/hisysevent/adapter/native/idl/src/
Dfile_util.cpp103 fout.flush(); in CopyFile()
/base/update/updater/services/ui/view/component/
Dbox_progress_adapter.cpp66 ON_SCOPE_EXIT(flush) { in SetValue()
/base/hiviewdfx/hiview/base/utility/
Dfile_util.cpp236 fout.flush(); in CreateFile()
259 fout.flush(); in CopyFile()
/base/update/packaging_tools/zipalign/src/main/java/com/ohos/
DZipAlign.java90 out.flush(); in copyFiles()
/base/hiviewdfx/hidumper/frameworks/native/
Ddump_utils.cpp222 fout.flush(); in CopyFile()
/base/location/services/location_locator/locator/source/
Dlocation_config_manager.cpp83 outFile.flush(); in CreateFile()
/base/update/updater/test/unittest/utils/json/
Dutils_json_test.cpp210 ofs.flush();
/base/hiviewdfx/hiview/base/event_store/utility/writer/
Dsys_event_doc_writer.cpp177 out_.flush(); in WriteContent()
/base/update/updater/
Dupdater_ux_guide.md36 UPDATER_UI_INSTANCE.Sleep(50); /* wait for page flush 50ms */

12