Home
last modified time | relevance | path

Searched refs:bs_ (Results 1 – 6 of 6) sorted by relevance

/base/update/updater/services/applypatch/
Dblock_writer.cpp25 return blockIndex_ == bs_.CountOfRanges() && currentBlockLeft_ == 0; in IsWriteDone()
30 return bs_.TotalBlockSize() * H_BLOCK_SIZE; in GetBlocksSize()
52 if (blockIndex_ >= bs_.CountOfRanges()) { in Write()
57 const BlockPair &bp = bs_[blockIndex_]; in Write()
/base/update/updater/services/include/applypatch/
Dblock_writer.h29 BlockWriter(int fd, BlockSet& bs) : fd_(fd), bs_(bs), totalWritten_(0), blockIndex_(0), in BlockWriter()
38 BlockSet bs_; variable
/base/update/updater/test/unittest/applypatch_test/
Dimagepatch_unittest.h53 FileWriter(int fd, BlockSet &bs) : fd_(fd), bs_(bs), totalWritten_(0), currentBlockLeft_(0) {} in FileWriter()
58 BlockSet bs_; variable
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_verify.cpp127 if (type == AppEventParamType::BVECTOR && vu.bs_.size() > MAX_SIZE_OF_LIST_PARAM) { in CheckListValueSize()
128 vu.bs_.resize(MAX_SIZE_OF_LIST_PARAM); in CheckListValueSize()
Dhiappevent_base.cpp129 new (&value->valueUnion.bs_) auto(other.valueUnion.bs_); in InitValueByReferType()
177 valueUnion.bs_.~vector(); in ~AppEventParamValue()
300 appEventParam.value.valueUnion.bs_.assign(bs.begin(), bs.end()); in AddParam()
516 AddVectorToJsonString(jsonStr, param.value.valueUnion.bs_); in AddOthersToJsonString()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_base.h83 std::vector<bool> bs_; member
101 new (&bs_) std::vector<bool>; in ValueUnion()