Lines Matching refs:apps_
934 for (auto &it : apps_) { in dumpAppInfo()
1002 for (auto &it : apps_) { in saveApps()
1075 apps_[id] = std::unique_ptr<AppData>(new AppData); in restoreApps()
1076 apps_[id]->loaded = false; in restoreApps()
1077 apps_[id]->running = false; in restoreApps()
1078 apps_[id]->chre = false; in restoreApps()
1079 apps_[id]->cached_napp = true; in restoreApps()
1080 apps_[id]->cached_version = version; in restoreApps()
1081 apps_[id]->cached_start = start; in restoreApps()
1082 apps_[id]->cached_crc = crc; in restoreApps()
1091 for (auto it=apps_.begin(); it != apps_.end();) { in eraseApps()
1093 it = apps_.erase(it); in eraseApps()
1160 if ((!apps_[appName.id]->cached_napp) || in cmpApp()
1161 (apps_[appName.id]->crc != apps_[appName.id]->cached_crc)) in cmpApp()
1203 apps_[name.id] = std::unique_ptr<AppData>(new AppData); in readNanohubAppInfo()
1204 apps_[name.id]->loaded = false; in readNanohubAppInfo()
1205 apps_[name.id]->chre = false; in readNanohubAppInfo()
1206 apps_[name.id]->running = false; in readNanohubAppInfo()
1207 apps_[name.id]->cached_napp = false; in readNanohubAppInfo()
1209 const auto &app = apps_[name.id]; in readNanohubAppInfo()
1318 for (auto &it : apps_) { in sendAppInfoToApp()
1354 for (auto &it : apps_) { in getAppsToStart()