Home
last modified time | relevance | path

Searched defs:SqlValue (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/include/perfetto/trace_processor/
Dbasic_types.h55 struct PERFETTO_EXPORT SqlValue { struct
65 SqlValue() = default; argument
67 static SqlValue Long(int64_t v) { in Long() argument
74 static SqlValue Double(double v) { in Double() argument
81 static SqlValue String(const char* v) { in String() argument
88 double AsDouble() const { in AsDouble()
92 int64_t AsLong() const { in AsLong()
96 const char* AsString() const { in AsString()
100 const void* AsBytes() const { in AsBytes()
105 bool is_null() const { return type == Type::kNull; } in is_null()
[all …]
/external/perfetto/src/trace_processor/db/
Dcompare.h157 inline int SqlValue(const SqlValue& a, const SqlValue& b) { in SqlValue() function
/external/perfetto/src/trace_processor/rpc/
Drpc.cc123 using SqlValue = trace_processor::SqlValue; in RawQuery() typedef