Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiview/base/event_store/dao/
H A Dsys_event_query.cpp317 void Cond::Traval(DocQuery &docQuery, const Cond &cond) in Traval() argument
320 docQuery.And(cond); in Traval()
325 docQuery.And(andCond); in Traval()
327 Traval(docQuery, andCond); in Traval()
462 void SysEventQuery::BuildDocQuery(DocQuery &docQuery) const in BuildDocQuery()
464 Cond::Traval(docQuery, cond_); in BuildDocQuery()
528 DocQuery docQuery; in ToString() local
529 BuildDocQuery(docQuery); in ToString()
530 output.append(docQuery.ToString()).append("]"); in ToString()
/ohos5.0/base/hiviewdfx/hiview/base/event_store/test/unittest/common/
H A Dsys_event_dao_test.cpp691 DocQuery docQuery; variable
696 docQuery.And(invalidCond);
697 ASSERT_TRUE(docQuery.ToString().empty());
701 docQuery.And(cond1);
703 docQuery.And(cond2);
705 docQuery.And(cond3);
707 docQuery.And(cond4);
709 docQuery.And(cond5);
711 docQuery.And(cond6);
713 docQuery.And(cond7);
[all …]
/ohos5.0/base/hiviewdfx/hiview/base/event_store/store/
H A Dsys_event_database.cpp408 DocQuery docQuery; in QueryByFiles() local
409 sysEventQuery.BuildDocQuery(docQuery); in QueryByFiles()
415 if (auto res = sysEventDoc->Query(docQuery, entries, totalNum); res != DOC_STORE_SUCCESS) { in QueryByFiles()
/ohos5.0/base/hiviewdfx/hiview/base/event_store/include/
H A Dsys_event_query.h209 static void Traval(DocQuery &docQuery, const Cond &cond);
302 void BuildDocQuery(DocQuery &docQuery) const;