Searched refs:RowId (Results 1 – 13 of 13) sorted by relevance
/external/perfetto/src/trace_processor/ |
D | args_tracker.cc | 26 void ArgsTracker::AddArg(RowId row_id, in AddArg() 52 RowId rid = args.row_id; in Flush()
|
D | event_tracker.h | 53 virtual RowId PushCounter(int64_t timestamp, 61 virtual RowId PushInstant(int64_t timestamp,
|
D | event_tracker.cc | 112 auto add_raw_arg = [this](RowId row_id, int field_num, in PushSchedSwitch() 134 RowId EventTracker::PushCounter(int64_t timestamp, in PushCounter() 172 RowId EventTracker::PushInstant(int64_t timestamp, in PushInstant()
|
D | args_tracker.h | 35 void AddArg(RowId row_id, StringId flat_key, StringId key, Variadic);
|
D | trace_storage.h | 65 using RowId = int64_t; variable 66 static const RowId kInvalidRowId = 0; 152 RowId row_id = 0; 516 inline RowId AddRawEvent(int64_t timestamp, in AddRawEvent() 838 static RowId CreateRowId(TableId table, uint32_t row) { in CreateRowId() 839 return (static_cast<RowId>(table) << kRowIdTableShift) | row; in CreateRowId() 842 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) { in ParseRowId()
|
D | table.h | 99 virtual int RowId(sqlite3_int64*); 239 return static_cast<TCursor*>(c)->RowId(r);
|
D | table.cc | 148 int Table::Cursor::RowId(sqlite3_int64*) { in RowId() function in perfetto::trace_processor::Table::Cursor
|
D | raw_table.cc | 223 RowId row_id = sqlite3_value_int64(argv[0]); in ToSystrace()
|
D | proto_trace_parser_unittest.cc | 79 RowId(int64_t timestamp, 112 void(RowId row_id, StringId flat_key, StringId key, Variadic));
|
D | proto_trace_parser.cc | 966 RowId row_id = context_->storage->mutable_raw_events()->AddRawEvent( in ParseGenericFtrace() 1003 RowId raw_event_id = context_->storage->mutable_raw_events()->AddRawEvent( in ParseTypedFtraceToRaw()
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
D | Impl_RowSet.java | 31 import java.sql.RowId; 802 public RowId getRowId(int columnIndex) throws SQLException { in getRowId() 806 public RowId getRowId(String columnLabel) throws SQLException { in getRowId() 979 public void updateRowId(int columnIndex, RowId x) throws SQLException { in updateRowId() 983 public void updateRowId(String columnLabel, RowId x) throws SQLException { in updateRowId() 1212 public void setRowId(int parameterIndex, RowId theRowId) in setRowId() 1217 public void setRowId(String parameterName, RowId theRowId) in setRowId()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSet.java | 1331 public RowId getRowId(int colIndex) throws SQLException { 1335 public RowId getRowId(String colName) throws SQLException { 1340 public void updateRowId(int colIndex, RowId x) throws SQLException { 1344 public void updateRowId(String colName, RowId x) throws SQLException {
|
D | JDBCPreparedStatement.java | 781 public void setRowId(int parameterIndex, RowId x) throws SQLException { 785 public void setRowId(String parameterName, RowId x) throws SQLException {
|