Lines Matching refs:bundleName
20 void AppLaunchSceneDbAdapter::CreateRecord(const std::string& bundleName, const AppStartRecord& record)
22 appStartRecords.insert(std::make_pair(bundleName, record));
25 void AppLaunchSceneDbAdapter::UpdateRecord(const std::string& bundleName, const AppStartRecord& record)
27 appStartRecords[bundleName] = record;
30 void AppLaunchSceneDbAdapter::DeleteRecord(const std::string& bundleName)
32 appStartRecords.erase(bundleName);
35 AppLaunchSceneDbAdapter::AppStartRecord AppLaunchSceneDbAdapter::QueryRecord(const std::string& bundleName)
38 auto it = appStartRecords.find(bundleName);
47 appStartRecords.insert(std::make_pair(record.bundleName, record));
52 appStartRecords[record.bundleName] = record;