Home
last modified time | relevance | path

Searched refs:AppLaunchHistoryModel (Results 1 – 3 of 3) sorted by relevance

/system/iorap/src/db/
Dmodels.h786 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()
[all …]
/system/iorap/src/maintenance/
Dcontroller.cc226 const std::vector<db::AppLaunchHistoryModel>& histories) { in GetPerfettoTraceInfo()
229 for(db::AppLaunchHistoryModel history : histories) { in GetPerfettoTraceInfo()
324 std::vector<db::AppLaunchHistoryModel> histories = in CompileActivity()
325 db::AppLaunchHistoryModel::SelectActivityHistoryForCompile(db, activity_id); in CompileActivity()
535 std::vector<db::AppLaunchHistoryModel> histories = in DumpPackageActivity()
536 db::AppLaunchHistoryModel::SelectActivityHistoryForCompile(db, activity.id); in DumpPackageActivity()
/system/iorap/src/manager/
Devent_manager.cc611 std::optional<db::AppLaunchHistoryModel> history = InsertDbLaunchHistory(pid); in RecordDbLaunchHistory()
636 std::optional<db::AppLaunchHistoryModel> InsertDbLaunchHistory(int32_t pid) { in InsertDbLaunchHistory()
667 auto temp = static_cast<db::AppLaunchHistoryModel::Temperature>(*temperature_); in InsertDbLaunchHistory()
669 std::optional<AppLaunchHistoryModel> alh = in InsertDbLaunchHistory()
670 AppLaunchHistoryModel::Insert(db, in InsertDbLaunchHistory()
701 db::AppLaunchHistoryModel::UpdateReportFullyDrawn(db, in UpdateReportFullyDrawn()