Lines Matching refs:history_id
901 int history_id, in UpdateReportFullyDrawn() argument
908 bool result = DbQueryBuilder::Update(db, sql, report_fully_drawn_ns, history_id); in UpdateReportFullyDrawn()
911 LOG(ERROR)<< "Failed to update history_id:"<< history_id in UpdateReportFullyDrawn()
990 while (DbQueryBuilder::SelectOnce(stmt, p.id, p.history_id, p.file_path)) { in SelectByVersionedComponentName()
997 static std::optional<RawTraceModel> SelectByHistoryId(DbHandle db, int history_id) { in SelectByHistoryId() argument
1006 DbStatement stmt = DbStatement::Prepare(db, sql, history_id); in SelectByHistoryId()
1009 if (!DbQueryBuilder::SelectOnce(stmt, p.id, p.history_id, p.file_path)) { in SelectByHistoryId()
1017 int history_id, in Insert() argument
1022 DbQueryBuilder::Insert(db, sql, history_id, file_path); in Insert()
1029 p.history_id = history_id; in Insert()
1042 int history_id; variable
1047 os << "RawTraceModel{id=" << p.id << ",history_id=" << p.history_id << ",";