/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/ |
H A D | kv_store_result_set_impl.cpp | 116 bool KvStoreResultSetImpl::IsBeforeFirst() const in IsBeforeFirst() function in DistributedDB::KvStoreResultSetImpl 121 return resultSet_->IsBeforeFirst(); in IsBeforeFirst()
|
H A D | kv_store_result_set_impl.h | 65 bool IsBeforeFirst() const override;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | store_result_set.cpp | 142 bool StoreResultSet::IsBeforeFirst() const in IsBeforeFirst() function in OHOS::DistributedKv::StoreResultSet 150 return impl_->IsBeforeFirst(); in IsBeforeFirst()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/ |
H A D | ikvdb_result_set.h | 62 virtual bool IsBeforeFirst() const = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/ |
H A D | kvdb_windowed_result_set.h | 53 bool IsBeforeFirst() const override;
|
H A D | kvdb_windowed_result_set.cpp | 75 bool KvDBWindowedResultSet::IsBeforeFirst() const in IsBeforeFirst() function in DistributedDB::KvDBWindowedResultSet
|
/ohos5.0/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/ |
H A D | kvstore_result_set.h | 101 virtual bool IsBeforeFirst() const = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/src/ |
H A D | js_kv_store_resultset.cpp | 39 DECLARE_NAPI_FUNCTION("isBeforeFirst", JsKVStoreResultSet::IsBeforeFirst), in Constructor() 230 napi_value JsKVStoreResultSet::IsBeforeFirst(napi_env env, napi_callback_info info) /* boolean */ in IsBeforeFirst() function in OHOS::DistributedData::JsKVStoreResultSet 239 bool isBeforeFirst = resultSet->IsBeforeFirst(); in IsBeforeFirst()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/ |
H A D | js_kv_store_resultset.cpp | 42 DECLARE_NAPI_FUNCTION("isBeforeFirst", JsKVStoreResultSet::IsBeforeFirst), in Constructor() 240 napi_value JsKVStoreResultSet::IsBeforeFirst(napi_env env, napi_callback_info info) /* boolean */ in IsBeforeFirst() function in OHOS::DistributedKVStore::JsKVStoreResultSet 249 bool isBeforeFirst = resultSet->IsBeforeFirst(); in IsBeforeFirst()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_result_set.h | 41 bool IsBeforeFirst() const override;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_single_ver_result_set.h | 58 bool IsBeforeFirst() const override;
|
H A D | rd_single_ver_result_set.cpp | 345 bool RdSingleVerResultSet::IsBeforeFirst() const in IsBeforeFirst() function in DistributedDB::RdSingleVerResultSet
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/include/ |
H A D | js_kv_store_resultset.h | 46 static napi_value IsBeforeFirst(napi_env env, napi_callback_info info);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/include/ |
H A D | js_kv_store_resultset.h | 46 static napi_value IsBeforeFirst(napi_env env, napi_callback_info info);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_single_ver_result_set.h | 73 bool IsBeforeFirst() const override;
|
H A D | sqlite_single_ver_result_set.cpp | 225 bool SQLiteSingleVerResultSet::IsBeforeFirst() const in IsBeforeFirst() function in DistributedDB::SQLiteSingleVerResultSet
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/kvstoreresultset_fuzzer/ |
H A D | kvstoreresultset_fuzzer.cpp | 71 readResultSet->IsBeforeFirst(); in ResultSetFuzzer()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/ |
H A D | kv_store_result_set.h | 60 DB_API virtual bool IsBeforeFirst() const = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/distributeddb/ |
H A D | result_set.h | 62 DB_API virtual bool IsBeforeFirst() const = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/ |
H A D | relational_result_set_impl.h | 71 bool IsBeforeFirst() const override;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/ |
H A D | distributeddb_nb_cursor_testcase.cpp | 125 result = resultSet->IsBeforeFirst(); in JudgePosition() 1074 EXPECT_TRUE(resultSet->IsBeforeFirst() == true); in ResultSetDb014() 1080 EXPECT_TRUE(resultSet->IsBeforeFirst() == true); in ResultSetDb014() 1688 EXPECT_TRUE(resultSetAll->IsBeforeFirst() == false); in CursorOperThread() 1768 resultSet->IsBeforeFirst(); in CursorRandOperThread1() 1803 resultSet->IsBeforeFirst(); in CursorRandOperThread2() 1858 resultSet->IsBeforeFirst(); in CursorRandOperThread3() 1909 resultSet->IsBeforeFirst(); in CursorRandOperThread4()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/ |
H A D | distributeddb_relational_result_set_test.cpp | 246 EXPECT_TRUE(resultSet->IsBeforeFirst()); // empty result set, always true 301 EXPECT_FALSE(resultSet->IsBeforeFirst()); // position=0, not before the first
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/ |
H A D | device_kvstore_test.cpp | 239 resultSet->IsBeforeFirst(); 295 resultSet->IsBeforeFirst(); 348 resultSet->IsBeforeFirst(); 395 resultSet->IsBeforeFirst();
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | rdb_cursor_test.cpp | 96 bool IsBeforeFirst() const override in IsBeforeFirst() function in OHOS::Test::DistributedRDBTest::MockResultSet
|
/ohos5.0/foundation/distributeddatamgr/kv_store/test/fuzztest/devicekvstore_fuzzer/ |
H A D | devicekvstore_fuzzer.cpp | 251 resultSet->IsBeforeFirst(); in GetResultSetFuzz3() 254 resultSet->IsBeforeFirst(); in GetResultSetFuzz3()
|