Lines Matching refs:AppLaunchHistoryModel
786 class AppLaunchHistoryModel : public Model {
788 AppLaunchHistoryModel(DbHandle db) : Model{db} { in AppLaunchHistoryModel() function
799 static std::optional<AppLaunchHistoryModel> SelectById(DbHandle db, int id) { in SelectById()
806 AppLaunchHistoryModel p{db}; in SelectById()
828 static std::vector<AppLaunchHistoryModel> SelectActivityHistoryForCompile( in SelectActivityHistoryForCompile()
838 std::vector<AppLaunchHistoryModel> result; in SelectActivityHistoryForCompile()
840 AppLaunchHistoryModel p{db}; in SelectActivityHistoryForCompile()
856 static std::optional<AppLaunchHistoryModel> Insert(DbHandle db, in Insert()
858 AppLaunchHistoryModel::Temperature temperature, in Insert()
886 AppLaunchHistoryModel p{db}; in Insert()
928 inline std::ostream& operator<<(std::ostream& os, const AppLaunchHistoryModel& p) {