Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dresult_entries_window.cpp27 : rawCursor_(nullptr), in ResultEntriesWindow()
35 if (rawCursor_ != nullptr) { in ~ResultEntriesWindow()
36 (void)(rawCursor_->Close()); in ~ResultEntriesWindow()
37 rawCursor_ = nullptr; in ~ResultEntriesWindow()
53 rawCursor_ = rawCursor; in Init()
89 if (rawCursor_ == nullptr) { in MoveToPosition()
130 if (rawCursor_ != nullptr) { in ResetWindow()
131 (void)(rawCursor_->Reload()); in ResetWindow()
151 if (rawCursor_ == nullptr) { in LoadData()
181 (void)(rawCursor_->Close()); in LoadData()
[all …]
H A Dresult_entries_window.h41 mutable IKvDBRawCursor *rawCursor_; variable
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_result_set.cpp45 rawCursor_ = nullptr; in ~SQLiteSingleVerResultSet()
69 rawCursor_ = new (std::nothrow) SQLiteSingleVerForwardCursor(kvDB_, keyPrefix_); in OpenForCacheFullEntryMode()
71 rawCursor_ = new (std::nothrow) SQLiteSingleVerForwardCursor(kvDB_, queryObj_); in OpenForCacheFullEntryMode()
73 if (rawCursor_ == nullptr) { in OpenForCacheFullEntryMode()
80 delete rawCursor_; in OpenForCacheFullEntryMode()
81 rawCursor_ = nullptr; in OpenForCacheFullEntryMode()
87 int errCode = window_->Init(rawCursor_, windowSize, scale); in OpenForCacheFullEntryMode()
92 delete rawCursor_; in OpenForCacheFullEntryMode()
93 rawCursor_ = nullptr; in OpenForCacheFullEntryMode()
367 delete rawCursor_; // It is defined behavior to delete even a nullptr in CloseForCacheFullEntryMode()
[all …]
H A Dsqlite_single_ver_result_set.h109 IKvDBRawCursor *rawCursor_ = nullptr; variable