Home
last modified time | relevance | path

Searched refs:col (Results 1 – 2 of 2) sorted by relevance

/base/hiviewdfx/hiview/base/event_store/
Dsys_event_query.cpp84 Cond::Cond(const std::string &col, Op op, int8_t value): col_(col), op_(op), fieldValue_(value) in Cond() argument
88 Cond::Cond(const std::string &col, Op op, int16_t value): col_(col), op_(op), fieldValue_(value) in Cond() argument
92 Cond::Cond(const std::string &col, Op op, int32_t value): col_(col), op_(op), fieldValue_(value) in Cond() argument
96 Cond::Cond(const std::string &col, Op op, int64_t value): col_(col), op_(op), fieldValue_(value) in Cond() argument
100 Cond::Cond(const std::string &col, Op op, float value): col_(col), op_(op), fieldValue_(value) in Cond() argument
104 Cond::Cond(const std::string &col, Op op, double value): col_(col), op_(op), fieldValue_(value) in Cond() argument
108 Cond::Cond(const std::string &col, Op op, const std::string &value): col_(col), op_(op), fieldValue… in Cond() argument
112 Cond::Cond(const std::string &col, Op op, const std::vector<int8_t> &ints): op_(NONE), fieldValue_(… in Cond() argument
115 orConds_.emplace_back(Cond(col, op, value)); in Cond()
119 Cond::Cond(const std::string &col, Op op, const std::vector<int16_t> &ints): op_(NONE), fieldValue_… in Cond() argument
[all …]
/base/hiviewdfx/hiview/base/event_store/include/
Dsys_event_query.h91 Cond(const std::string &col, Op op, int8_t value);
92 Cond(const std::string &col, Op op, int16_t value);
93 Cond(const std::string &col, Op op, int32_t value);
94 Cond(const std::string &col, Op op, int64_t value);
95 Cond(const std::string &col, Op op, float value);
96 Cond(const std::string &col, Op op, double value);
97 Cond(const std::string &col, Op op, const std::string &value);
98 Cond(const std::string &col, Op op, const std::vector<int8_t> &ints);
99 Cond(const std::string &col, Op op, const std::vector<int16_t> &ints);
100 Cond(const std::string &col, Op op, const std::vector<int32_t> &ints);
[all …]