HomeSort by relevance Sort by last modified time
    Searched refs:row_id (Results 1 - 14 of 14) sorted by null

  /external/perfetto/src/trace_processor/
args_tracker.cc 26 void ArgsTracker::AddArg(RowId row_id,
33 rid_arg->row_id = row_id;
45 return f.row_id < s.row_id;
52 RowId rid = args.row_id;
55 while (next_rid_idx < args_.size() && rid == args_[next_rid_idx].row_id)
args_tracker.h 35 void AddArg(RowId row_id, StringId flat_key, StringId key, Variadic);
event_tracker.cc 112 auto add_raw_arg = [this](RowId row_id, int field_num,
115 context_->args_tracker->AddArg(row_id, key, key, var);
raw_table.cc 223 RowId row_id = sqlite3_value_int64(argv[0]); local
224 auto pair = TraceStorage::ParseRowId(row_id);
proto_trace_parser.cc 639 auto row_id = context_->event_tracker->PushInstant(ts, lmk_id_, 0, utid, local
645 context_->args_tracker->AddArg(row_id, comm_name_id_, comm_name_id_,
966 RowId row_id = context_->storage->mutable_raw_events()->AddRawEvent( local
    [all...]
proto_trace_parser_unittest.cc 112 void(RowId row_id, StringId flat_key, StringId key, Variadic));
    [all...]
trace_storage.h 152 RowId row_id = 0; member in struct:perfetto::trace_processor::TraceStorage::Args::Arg
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_table_accessor_test.cc 202 int64 row_id; local
204 TF_EXPECT_OK(accessor_->ReadRow(&row_id, &example));
212 EXPECT_EQ(row_id, 2);
233 int64 row_id; local
235 TF_EXPECT_OK(accessor_->ReadRow(&row_id, &example));
238 EXPECT_EQ(row_id, 2);
263 int64 row_id; local
265 TF_EXPECT_OK(accessor_->ReadRow(&row_id, &example));
273 EXPECT_EQ(row_id, 2);
295 int64 row_id; local
325 int64 row_id; local
350 int64 row_id; local
375 int64 row_id; local
407 int64 row_id; local
463 int64 row_id; local
509 int64 row_id; local
    [all...]
bigquery_reader_ops.cc 79 int64 row_id; variable
80 TF_RETURN_IF_ERROR(bigquery_table_accessor_->ReadRow(&row_id, &example));
82 *key = std::to_string(row_id);
bigquery_table_accessor.h 83 Status ReadRow(int64* row_id, Example* example);
bigquery_table_accessor.cc 147 Status BigQueryTableAccessor::ReadRow(int64* row_id, Example* example) {
156 *row_id = first_buffered_row_index_ + next_row_in_buffer_;
197 *row_id = first_buffered_row_index_;
  /external/python/cpython2/Lib/bsddb/test/
test_recno.py 302 row_id = d.append(' ')
303 self.assertEqual(1, d.get_size(key=row_id))
304 row_id = d.append('')
305 self.assertEqual(0, d.get_size(key=row_id))
  /external/autotest/scheduler/
monitor_db_unittest.py 57 def __init__(self, row_id):
58 self.row_id = row_id
62 return list(parameter)[0] == self.row_id
66 return 'row with id %s' % self.row_id
    [all...]
scheduler_models.py 183 def _fetch_row_from_db(self, row_id):
186 rows = _db.execute(sql, (row_id,))
189 % (self.__table, row_id))
    [all...]

Completed in 697 milliseconds