/base/hiviewdfx/hisysevent/adapter/native/idl/include/ |
H A D | query_argument.h | 27 int64_t fromSeq = -1, int64_t toSeq = -1) in QueryArgument() 28 : beginTime(beginTime), endTime(endTime), maxEvents(maxEvents), fromSeq(fromSeq), toSeq(toSeq) {} in QueryArgument() 37 int64_t fromSeq = -1; member in OHOS::HiviewDFX::QueryArgument
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/include/ |
H A D | query_argument.h | 27 int64_t fromSeq = -1, int64_t toSeq = -1) in QueryArgument() 28 : beginTime(beginTime), endTime(endTime), maxEvents(maxEvents), fromSeq(fromSeq), toSeq(toSeq) {} in QueryArgument() 37 int64_t fromSeq = -1; member in OHOS::HiviewDFX::QueryArgument
|
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/ |
H A D | hisysevent_rules.h | 31 long long fromSeq; member 35 const long long fromSeq = -1, const long long toSeq = -1) in QueryArg() 40 this->fromSeq = fromSeq; in QueryArg() 44 QueryArg(): beginTime(0), endTime(0), maxEvents(0), fromSeq(-1), toSeq(-1) {} in QueryArg()
|
/base/hiviewdfx/hiview/base/event_store/dao/ |
H A D | sys_event_dao.cpp | 41 const std::vector<std::string>& names, uint32_t type, int64_t toSeq, int64_t fromSeq) in BuildQuery() 44 ", fromSeq=%{public}" PRId64, domain.c_str(), names.size(), type, toSeq, fromSeq); in BuildQuery() 45 return std::make_shared<SysEventQueryWrapper>(domain, names, type, toSeq, fromSeq); in BuildQuery() 40 BuildQuery(const std::string& domain, const std::vector<std::string>& names, uint32_t type, int64_t toSeq, int64_t fromSeq) BuildQuery() argument
|
H A D | sys_event_query.cpp | 436 uint32_t type, int64_t toSeq, int64_t fromSeq) : queryArg_(domain, names, type, toSeq, fromSeq) in SysEventQuery() 435 SysEventQuery(const std::string& domain, const std::vector<std::string>& names, uint32_t type, int64_t toSeq, int64_t fromSeq) SysEventQuery() argument
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/ |
H A D | query_argument.cpp | 31 if (!parcel.WriteInt64(fromSeq)) { in Marshalling() 55 if (!parcel.ReadInt64(ret->fromSeq)) { in Unmarshalling()
|
H A D | event_query_wrapper_builder.cpp | 198 ", endTime=%{public}" PRId64 ", maxEvents=%{public}d, fromSeq=%{public}" PRId64 in Query() 200 argument_.maxEvents, argument_.fromSeq, argument_.toSeq, queryLimit_); in Query() 307 ", endTime=%{public} " PRId64 ", maxEvents=%{public}d, fromSeq=%{public} " PRId64 in SetQueryArgument() 309 argument.maxEvents, argument.fromSeq, argument.toSeq); in SetQueryArgument() 413 auto offset = argument_.toSeq > argument_.fromSeq ? (argument_.toSeq - argument_.fromSeq) : 0; 416 whereCond.And(EventStore::EventCol::SEQ, EventStore::Op::GE, argument_.fromSeq) 420 queryRule.eventType, argument_.toSeq, argument_.fromSeq); 485 if (argument.fromSeq != INVALID_SEQ && argument.toSeq != INVALID_SEQ && argument.fromSeq < argumen in CreateQueryWrapperByArgument() [all...] |
/base/hiviewdfx/hisysevent/adapter/native/idl/src/ |
H A D | query_argument.cpp | 31 if (!parcel.WriteInt64(fromSeq)) { in Marshalling() 55 if (!parcel.ReadInt64(ret->fromSeq)) { in Unmarshalling()
|
H A D | hisysevent_delegate.cpp | 126 QueryArgument queryArgument(arg.beginTime, arg.endTime, arg.maxEvents, arg.fromSeq, arg.toSeq); in Query() 150 QueryArgument queryArgument(arg.beginTime, arg.endTime, arg.maxEvents, arg.fromSeq, arg.toSeq); in Export()
|
/base/hiviewdfx/hiview/base/event_store/include/ |
H A D | sys_event_dao.h | 36 const std::vector<std::string>& names, uint32_t type, int64_t toSeq, int64_t fromSeq);
|
H A D | sys_event_query_wrapper.h | 110 uint32_t type, int64_t toSeq, int64_t fromSeq) : SysEventQuery(domain, names, type, toSeq, fromSeq) {} in SysEventQueryWrapper() 109 SysEventQueryWrapper(const std::string& domain, const std::vector<std::string>& names, uint32_t type, int64_t toSeq, int64_t fromSeq) SysEventQueryWrapper() argument
|
H A D | sys_event_query.h | 244 int64_t fromSeq; member 248 uint32_t type, int64_t toSeq, int64_t fromSeq) in SysEventQueryArg() 254 this->fromSeq = fromSeq; in SysEventQueryArg() 296 int64_t fromSeq);
|
/base/hiviewdfx/hiview/base/event_store/store/ |
H A D | sys_event_database.cpp | 387 if (iter != nameSeqMap.end() && iter->second <= queryArg.fromSeq) { in IsContainQueryArg()
|
/base/hiviewdfx/hisysevent/interfaces/js/kits/napi/src/ |
H A D | napi_hisysevent_util.cpp | 52 constexpr char BEGIN_SEQ_ATTR[] = "fromSeq"; 931 queryArg.fromSeq = GetLonglongTypeAttribute(env, fromSeqVal, DEFAULT_SEQ);
|