Home | History | Annotate | Download | only in trace_processor

Lines Matching refs:Table

17 #include "src/trace_processor/table.h"
30 std::string TypeToString(Table::ColumnType type) {
32 case Table::ColumnType::kString:
34 case Table::ColumnType::kUint:
36 case Table::ColumnType::kLong:
38 case Table::ColumnType::kInt:
40 case Table::ColumnType::kDouble:
42 case Table::ColumnType::kUnknown:
51 bool Table::debug = false;
53 Table::Table() = default;
54 Table::~Table() = default;
56 int Table::OpenInternal(sqlite3_vtab_cursor** ppCursor) {
62 int Table::BestIndexInternal(sqlite3_index_info* idx) {
87 if (Table::debug) {
117 int Table::FindFunction(const char*, FindFunctionFn, void**) {
121 int Table::Update(int, sqlite3_value**, sqlite3_int64*) {
125 const QueryConstraints& Table::ParseConstraints(int idxNum,
134 if (Table::debug) {
141 Table::Cursor::Cursor(Table* table) : table_(table) {
144 pVtab = table;
146 Table::Cursor::~Cursor() = default;
148 int Table::Cursor::RowId(sqlite3_int64*) {
152 Table::Column::Column(size_t index,
158 Table::Schema::Schema(std::vector<Column> columns,
169 Table::Schema::Schema() = default;
170 Table::Schema::Schema(const Schema&) = default;
171 Table::Schema& Table::Schema::operator=(const Schema&) = default;
173 std::string Table::Schema::ToCreateTableStmt() const {
174 std::string stmt = "CREATE TABLE x(";