Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dshared_block_serializer_info.cpp37 int status = sharedBlock_->AllocRow(); in AddRow()
47 int status = sharedBlock_->Clear(); in Reset()
52 status = sharedBlock_->SetColumnNum(anumColumns); in Reset()
71 int status = sharedBlock_->PutLong(row, column, value); in PutLong()
75 sharedBlock_->FreeLastRow(); in PutLong()
81 int status = sharedBlock_->PutDouble(row, column, value); in PutDouble()
85 sharedBlock_->FreeLastRow(); in PutDouble()
107 sharedBlock_->FreeLastRow(); in PutBlob()
113 int status = sharedBlock_->PutNull(row, column); in PutNull()
117 sharedBlock_->FreeLastRow(); in PutNull()
[all …]
H A Dabs_shared_result_set.cpp36 AbsSharedResultSet::AbsSharedResultSet(std::string name) : sharedBlock_(nullptr), sharedBlockName_(… in AbsSharedResultSet()
65 if (sharedBlock_ != nullptr || isClosed_ || lowMem_) { in GetBlock()
66 return sharedBlock_; in GetBlock()
74 sharedBlock_ = std::shared_ptr<SharedBlock>(block); in GetBlock()
75 return sharedBlock_; in GetBlock()
219 if (sharedBlock_.get() != block) { in SetBlock()
220 sharedBlock_ = std::shared_ptr<SharedBlock>(block); in SetBlock()
238 sharedBlock_ = nullptr; in ClosedBlock()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dshared_block_serializer_info.h42 int status = sharedBlock_->PutString(row, column, text, sizeIncludingNull); in PutString()
46 sharedBlock_->FreeLastRow(); in PutString()
65 AppDataFwk::SharedBlock *sharedBlock_;
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/common/src/
H A Ddatashare_result_set.cpp48 sharedBlock_ = blockWriter_->GetBlock(); in DataShareResultSet()
118 return sharedBlock_; in GetBlock()
388 if (sharedBlock_ != nullptr) { in SetBlock()
389 if (sharedBlock_.get() != block) { in SetBlock()
390 sharedBlock_ = std::shared_ptr<AppDataFwk::SharedBlock>(block); in SetBlock()
394 sharedBlock_ = std::shared_ptr<AppDataFwk::SharedBlock>(block); in SetBlock()
413 sharedBlock_ = nullptr; in ClosedBlockAndBridge()
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dabs_shared_result_set.h151 std::shared_ptr<AppDataFwk::SharedBlock> sharedBlock_ = nullptr; variable
/ohos5.0/foundation/distributeddatamgr/data_share/interfaces/inner_api/consumer/include/
H A Ddatashare_result_set.h184 std::shared_ptr<AppDataFwk::SharedBlock> sharedBlock_ = nullptr; variable