Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Drelational_remote_query_continue_token.h36 static const unsigned int MAGIC_BEGIN = 0x600D0AC7; // for token guard
38 unsigned int magicBegin_ = MAGIC_BEGIN;
H A Dsqlite_single_ver_relational_continue_token.h52 static const unsigned int MAGIC_BEGIN = 0x600D0AC7; // for token guard variable
54 unsigned int magicBegin_ = MAGIC_BEGIN;
H A Drelational_remote_query_continue_token.cpp30 bool isValid = (magicBegin_ == MAGIC_BEGIN && magicEnd_ == MAGIC_END); in CheckValid()
H A Dsqlite_single_ver_relational_continue_token.cpp27 bool isValid = (magicBegin_ == MAGIC_BEGIN && magicEnd_ == MAGIC_END); in CheckValid()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_continue_token.h75 static const unsigned int MAGIC_BEGIN = 0x600D0AC7; // for token guard variable
77 unsigned int magicBegin_ = MAGIC_BEGIN;
H A Dsqlite_single_ver_continue_token.cpp41 return ((magicBegin_ == MAGIC_BEGIN) && (magicEnd_ == MAGIC_END)); in CheckValid()