Home
last modified time | relevance | path

Searched refs:MAGIC_END (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.h37 static const unsigned int MAGIC_END = 0x0AC7600D; // for token guard variable
41 unsigned int magicEnd_ = MAGIC_END;
H A Dsqlite_single_ver_relational_continue_token.h53 static const unsigned int MAGIC_END = 0x0AC7600D; // for token guard variable
60 unsigned int magicEnd_ = MAGIC_END;
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.h76 static const unsigned int MAGIC_END = 0x0AC7600D; // for token guard variable
81 unsigned int magicEnd_ = MAGIC_END;
H A Dsqlite_single_ver_continue_token.cpp41 return ((magicBegin_ == MAGIC_BEGIN) && (magicEnd_ == MAGIC_END)); in CheckValid()