Lines Matching refs:apps_
935 for (auto &it : apps_) { in dumpAppInfo()
1003 for (auto &it : apps_) { in saveApps()
1078 apps_[id] = std::unique_ptr<AppData>(new AppData); in restoreApps()
1079 apps_[id]->loaded = false; in restoreApps()
1080 apps_[id]->running = false; in restoreApps()
1081 apps_[id]->chre = false; in restoreApps()
1082 apps_[id]->cached_napp = true; in restoreApps()
1083 apps_[id]->cached_version = version; in restoreApps()
1084 apps_[id]->cached_start = start; in restoreApps()
1085 apps_[id]->cached_crc = crc; in restoreApps()
1094 for (auto it=apps_.begin(); it != apps_.end();) { in eraseApps()
1096 it = apps_.erase(it); in eraseApps()
1163 if ((!apps_[appName.id]->cached_napp) || in cmpApp()
1164 (apps_[appName.id]->crc != apps_[appName.id]->cached_crc)) in cmpApp()
1206 apps_[name.id] = std::unique_ptr<AppData>(new AppData); in readNanohubAppInfo()
1207 apps_[name.id]->loaded = false; in readNanohubAppInfo()
1208 apps_[name.id]->chre = false; in readNanohubAppInfo()
1209 apps_[name.id]->running = false; in readNanohubAppInfo()
1210 apps_[name.id]->cached_napp = false; in readNanohubAppInfo()
1212 const auto &app = apps_[name.id]; in readNanohubAppInfo()
1321 for (auto &it : apps_) { in sendAppInfoToApp()
1357 for (auto &it : apps_) { in getAppsToStart()