Home
last modified time | relevance | path

Searched refs:TS (Results 1 – 11 of 11) sorted by relevance

/base/hiviewdfx/hiview/plugins/freeze_detector/
Ddb_helper.cpp38 std::vector<std::string> selections { EventStore::EventCol::TS }; in SelectEventFromDB()
40 .Where(EventStore::EventCol::TS, EventStore::Op::GE, static_cast<int64_t>(start)) in SelectEventFromDB()
41 .And(EventStore::EventCol::TS, EventStore::Op::LE, static_cast<int64_t>(end)); in SelectEventFromDB()
98 std::vector<std::string> selections { EventStore::EventCol::TS }; in UpdateEventIntoDB()
100 ….Where(EventStore::EventCol::TS, EventStore::Op::EQ, static_cast<int64_t>(watchPoint.GetTimestamp(… in UpdateEventIntoDB()
/base/hiviewdfx/hiview/base/event_store/test/unittest/common/
Dsys_event_dao_test.cpp129 std::vector<std::string> selections { EventStore::EventCol::TS };
131 Where(EventStore::EventCol::TS, EventStore::Op::EQ, 162027129100).Execute();
164 std::vector<std::string> selections { EventStore::EventCol::TS };
166 .Where(EventStore::EventCol::TS, EventStore::Op::EQ, 1620271291200).Execute();
177 (*delEventQuery).Where(EventStore::EventCol::TS, EventStore::Op::GT, 0);
182 (*sysEventQuery2).Where(EventStore::EventCol::TS, EventStore::Op::GT, 0).Execute();
205 EventStore::Cond timeCond(EventStore::EventCol::TS, EventStore::Op::GE, 100);
206 timeCond.And(EventStore::EventCol::TS, EventStore::Op::LT, 999);
248 .And(EventStore::EventCol::TS, EventStore::Op::EQ, 100)
249 .And(EventStore::EventCol::TS, EventStore::Op::EQ, 100.1f)
[all …]
/base/hiviewdfx/hiview/plugins/eventservice/store/
Dsys_event_db_backup.cpp42 …ResultSet result = (*sysEventQuery).Where(EventCol::TS, Op::GT, 0).And(EventCol::TS, Op::LT, 1000)… in IsBroken()
Dsys_event_db_cleaner.cpp97 sysEventQuery->Where(EventCol::TS, EventStore::Op::LE, time); in CleanDbByTime()
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/
Devent_query_wrapper_builder.cpp434 whereCond.And(EventStore::EventCol::TS, EventStore::Op::GE, argument.beginTime) in BuildQuery()
435 .And(EventStore::EventCol::TS, EventStore::Op::LT, argument.endTime); in BuildQuery()
468 query->Order(EventStore::EventCol::TS, true); in Order()
/base/hiviewdfx/hiview/plugins/eventlogger/
Devent_logger.cpp234 std::vector<std::string> selections { EventStore::EventCol::TS }; in UpdateDB()
236 … .Where(EventStore::EventCol::TS, EventStore::Op::EQ, static_cast<int64_t>(event->happenTime_)) in UpdateDB()
/base/hiviewdfx/hiview/plugins/faultlogger/service/
Dfaultlogger.cpp368 std::vector<std::string> selections { EventStore::EventCol::TS }; in OnEvent()
370 … .Where(EventStore::EventCol::TS, EventStore::Op::EQ, static_cast<int64_t>(event->happenTime_)) in OnEvent()
/base/hiviewdfx/hiview/plugins/hicollie_collector/
Dplugin.cpp96 std::vector<std::string> selections { EventStore::EventCol::TS }; in SelectEventFromDB()
/base/telephony/sms_mms/
DREADME_zh.md148 … | 收到的短信是否为“替换短信”,默认为false。“替换短信”有关详细信息,参见 “3GPP TS 23.040 9.2.3.9”。 |
/base/hiviewdfx/hiview/base/event_store/include/
Dsys_event_query.h50 static std::string TS; variable
/base/hiviewdfx/hiview/base/event_store/
Dsys_event_query.cpp33 std::string EventCol::TS = "time_"; member in OHOS::HiviewDFX::EventStore::EventCol