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.h112 struct PERFETTO_EXPORT SqlValue { struct
122 SqlValue() = default; argument
124 static SqlValue Long(int64_t v) { in Long() argument
131 static SqlValue Double(double v) { in Double() argument
138 static SqlValue String(const char* v) { in String() argument
145 static SqlValue Bytes(const void* v, size_t size) { in Bytes() argument
153 double AsDouble() const { in AsDouble()
157 int64_t AsLong() const { in AsLong()
161 const char* AsString() const { in AsString()
165 const void* AsBytes() const { in AsBytes()
[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.cc157 using SqlValue = trace_processor::SqlValue; in RawQuery() typedef